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

* shared/cache/cache.c:
	Use "__asm__" instead of "asm" for improved c99-compliance.
This commit is contained in:
Ralf Corsepius
2011-02-11 09:58:12 +00:00
parent 3d0af835ba
commit 51a92c44f4
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>
* shared/cache/cache.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.

View File

@@ -12,7 +12,7 @@
void _CPU_cache_invalidate_entire_instruction ( void ) void _CPU_cache_invalidate_entire_instruction ( void )
{ {
asm volatile ("flush"); __asm__ volatile ("flush");
} }
/* XXX these need to be addressed */ /* XXX these need to be addressed */