forked from Imagelibrary/rtems
2011-02-11 Ralf Corsépius <ralf.corsepius@rtems.org>
* au1x00/vectorisrs/vectorisrs.c: Use "__asm__" instead of "asm" for improved c99-compliance.
This commit is contained in:
@@ -1,3 +1,8 @@
|
|||||||
|
2011-02-11 Ralf Corsépius <ralf.corsepius@rtems.org>
|
||||||
|
|
||||||
|
* au1x00/vectorisrs/vectorisrs.c:
|
||||||
|
Use "__asm__" instead of "asm" for improved c99-compliance.
|
||||||
|
|
||||||
2011-02-02 Ralf Corsépius <ralf.corsepius@rtems.org>
|
2011-02-02 Ralf Corsépius <ralf.corsepius@rtems.org>
|
||||||
|
|
||||||
* configure.ac: Require autoconf-2.68, automake-1.11.1.
|
* configure.ac: Require autoconf-2.68, automake-1.11.1.
|
||||||
|
|||||||
@@ -46,7 +46,7 @@ void mips_vector_isr_handlers( CPU_Interrupt_frame *frame )
|
|||||||
* I don't see a good way to disable the compare
|
* I don't see a good way to disable the compare
|
||||||
* interrupt, so let's just ignore it.
|
* interrupt, so let's just ignore it.
|
||||||
*/
|
*/
|
||||||
asm volatile ("mtc0 %0, $11\n" :: "r" (zero));
|
__asm__ volatile ("mtc0 %0, $11\n" :: "r" (zero));
|
||||||
|
|
||||||
/* CALL_ISR( AU1X00_IRQ_CNT, frame ); */
|
/* CALL_ISR( AU1X00_IRQ_CNT, frame ); */
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user