diff options
author | Thomas Martitz <kugel@rockbox.org> | 2010-08-12 13:38:25 +0000 |
---|---|---|
committer | Thomas Martitz <kugel@rockbox.org> | 2010-08-12 13:38:25 +0000 |
commit | 0e2286f226c8ce66adb846995eb1bf0b4d92a649 (patch) | |
tree | ae47cfb8e2440b0b220e57e4c894390b6c1efd7a /firmware/target/coldfire | |
parent | 70ebe46d74dbb10160a878cdb120c9b3e7a8e30c (diff) | |
download | rockbox-0e2286f226c8ce66adb846995eb1bf0b4d92a649.tar.gz rockbox-0e2286f226c8ce66adb846995eb1bf0b4d92a649.zip |
Introduce NORETURN_ATTR wrapper for __attribute__((noreturn)), using this and a bit further cleanup in main gets rid of a warning when compiling for android.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27788 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/target/coldfire')
-rw-r--r-- | firmware/target/coldfire/system-coldfire.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/firmware/target/coldfire/system-coldfire.c b/firmware/target/coldfire/system-coldfire.c index ba67daa3a6..75440a23bf 100644 --- a/firmware/target/coldfire/system-coldfire.c +++ b/firmware/target/coldfire/system-coldfire.c @@ -20,6 +20,7 @@ ****************************************************************************/ #include <stdio.h> #include "config.h" +#include "gcc_extensions.h" #include "adc.h" #include "system.h" #include "lcd.h" @@ -200,7 +201,7 @@ static void system_display_exception_info(unsigned long format, reliable. The system restarts, but boot often fails with ata error -42. */ } -static void UIE(void) __attribute__ ((noreturn)); +static void UIE(void) NORETURN_ATTR; static void UIE(void) { asm volatile("subq.l #4,%sp"); /* phony return address - never used */ |