Module Name: src
Committed By: joerg
Date: Fri Jan 16 10:08:52 UTC 2015
Modified Files:
src/external/gpl3/gdb/dist/sim/ppc: device.c device.h
Log Message:
There is no such thing as void volatile.
To generate a diff of this commit:
cvs rdiff -u -r1.1.1.2 -r1.2 src/external/gpl3/gdb/dist/sim/ppc/device.c \
src/external/gpl3/gdb/dist/sim/ppc/device.h
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/external/gpl3/gdb/dist/sim/ppc/device.c
diff -u src/external/gpl3/gdb/dist/sim/ppc/device.c:1.1.1.2 src/external/gpl3/gdb/dist/sim/ppc/device.c:1.2
--- src/external/gpl3/gdb/dist/sim/ppc/device.c:1.1.1.2 Thu Oct 3 15:46:23 2013
+++ src/external/gpl3/gdb/dist/sim/ppc/device.c Fri Jan 16 10:08:52 2015
@@ -1815,7 +1815,7 @@ device_ioctl(device *me,
/* I/O */
EXTERN_DEVICE\
-(void volatile)
+(void)
device_error(device *me,
const char *fmt,
...)
Index: src/external/gpl3/gdb/dist/sim/ppc/device.h
diff -u src/external/gpl3/gdb/dist/sim/ppc/device.h:1.1.1.2 src/external/gpl3/gdb/dist/sim/ppc/device.h:1.2
--- src/external/gpl3/gdb/dist/sim/ppc/device.h:1.1.1.2 Thu Oct 3 15:46:27 2013
+++ src/external/gpl3/gdb/dist/sim/ppc/device.h Fri Jan 16 10:08:52 2015
@@ -726,7 +726,7 @@ EXTERN_DEVICE\
*/
EXTERN_DEVICE\
-(void volatile) device_error
+(void) device_error
(device *me,
const char *fmt,
...) __attribute__ ((format (printf, 2, 3)));