sim/ppc: mark device_error function as ATTRIBUTE_NORETURN
The device_error function always ends up calling the error function, which is itself marked as ATTRIBUTE_NORETURN, so it makes sense that device_error should also be marked ATTRIBUTE_NORETURN. Doing this resolves a few warnings from hw_ide.c about possibly uninitialized variables - the variables are only uninitialized after passing through a call to device_error, which obviously means the variables are never really used uninitialized, the simulation will terminate with the device_error call.
This commit is contained in:
parent
744875dfdc
commit
e5961d2be5
@ -729,7 +729,7 @@ EXTERN_DEVICE\
|
|||||||
(void) device_error
|
(void) device_error
|
||||||
(device *me,
|
(device *me,
|
||||||
const char *fmt,
|
const char *fmt,
|
||||||
...) ATTRIBUTE_PRINTF_2;
|
...) ATTRIBUTE_NORETURN ATTRIBUTE_PRINTF_2;
|
||||||
|
|
||||||
INLINE_DEVICE\
|
INLINE_DEVICE\
|
||||||
(int) device_trace
|
(int) device_trace
|
||||||
|
Loading…
x
Reference in New Issue
Block a user