aboutsummaryrefslogtreecommitdiff
path: root/sim/common/hw-device.h
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2011-01-10 21:52:08 +0000
committerMike Frysinger <vapier@gentoo.org>2011-01-10 21:52:08 +0000
commit5f78776ab10ca691df6a39760795257e30121be5 (patch)
treeaf17830010a40e221de6a5cfe825c1931ed96bbe /sim/common/hw-device.h
parent0df8b4180acb4890d058c92753dafcd4ff0a87d1 (diff)
downloadgdb-5f78776ab10ca691df6a39760795257e30121be5.zip
gdb-5f78776ab10ca691df6a39760795257e30121be5.tar.gz
gdb-5f78776ab10ca691df6a39760795257e30121be5.tar.bz2
sim: add noreturn markings to more hw abort/halt funcs
These functions either call abort() themselves, or call functions which are already marked noreturn. Either way, they don't return, so mark them as such so calling code can assume this. This fixes some uninitialized warnings due to code paths that end in an abort function. Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'sim/common/hw-device.h')
-rw-r--r--sim/common/hw-device.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/sim/common/hw-device.h b/sim/common/hw-device.h
index 4ac61b1..b0f66eb 100644
--- a/sim/common/hw-device.h
+++ b/sim/common/hw-device.h
@@ -433,17 +433,17 @@ int hw_ioctl
void hw_abort
(struct hw *me,
const char *fmt,
- ...) __attribute__ ((format (printf, 2, 3)));
+ ...) __attribute__ ((format (printf, 2, 3), noreturn));
void hw_vabort
(struct hw *me,
const char *fmt,
- va_list ap);
+ va_list ap) __attribute__ ((noreturn));
void hw_halt
(struct hw *me,
int reason,
- int status);
+ int status) __attribute__ ((noreturn));
#define hw_trace_p(hw) ((hw)->trace_of_hw_p + 0)