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

* irq.c:
	Use "__asm__" instead of "asm" for improved c99-compliance.
This commit is contained in:
Ralf Corsepius
2011-02-11 09:23:20 +00:00
parent 0e9008738c
commit 69aa2c61b1
2 changed files with 6 additions and 1 deletions
+5
View File
@@ -1,3 +1,8 @@
2011-02-11 Ralf Corsépius <ralf.corsepius@rtems.org>
* irq.c:
Use "__asm__" instead of "asm" for improved c99-compliance.
2010-10-21 Joel Sherrill <joel.sherrill@oarcorp.com>
* rtems/score/cpu.h: Add RTEMS_COMPILER_NO_RETURN_ATTRIBUTE to
+1 -1
View File
@@ -32,7 +32,7 @@
unsigned long *_old_stack_ptr;
#endif
register unsigned long *stack_ptr asm("sp");
register unsigned long *stack_ptr __asm__ ("sp");
void __ISR_Handler(uint32_t vector, CPU_Interrupt_frame *ifr)
{