2011-02-11 Ralf Corsépius <ralf.corsepius@rtems.org>

* startup/bspreset.c:
	Use "__asm__" instead of "asm" for improved c99-compliance.
This commit is contained in:
Ralf Corsepius
2011-02-11 11:42:32 +00:00
parent cf1d6674cb
commit fea7dee1c9
2 changed files with 6 additions and 1 deletions

View File

@@ -1,3 +1,8 @@
2011-02-11 Ralf Corsépius <ralf.corsepius@rtems.org>
* startup/bspreset.c:
Use "__asm__" instead of "asm" for improved c99-compliance.
2011-02-09 Ralf Corsépius <ralf.corsepius@rtems.org>
* timer/timer.c: Include <rtems/btimer.h>.

View File

@@ -18,6 +18,6 @@ void bsp_reset(void)
SKYEYE_MAGIC_ADDRESS = 0xff;
#else
asm volatile ("b _start");
__asm__ volatile ("b _start");
#endif
}