summaryrefslogtreecommitdiff
path: root/dyngen.h
diff options
context:
space:
mode:
authorj_mayer <j_mayer@c046a42c-6fe2-441c-8c8c-71466251a162>2007-11-18 15:50:41 +0000
committerj_mayer <j_mayer@c046a42c-6fe2-441c-8c8c-71466251a162>2007-11-18 15:50:41 +0000
commit189cd4d4b36368c9164706104e1dc8125067b52f (patch)
treefc6420c6a9217cc09c414f9d0f854d3935912b26 /dyngen.h
parentec4ef3168cdf5f3306543a713bbbac2b42d70f2d (diff)
downloadqemu-189cd4d4b36368c9164706104e1dc8125067b52f.tar.gz
Fix for ISO C compliance:
function qualifiers must always come before the return type. git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3691 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'dyngen.h')
-rw-r--r--dyngen.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/dyngen.h b/dyngen.h
index 266b9e9722..4451d54358 100644
--- a/dyngen.h
+++ b/dyngen.h
@@ -45,7 +45,7 @@ static inline void flush_icache_range(unsigned long start, unsigned long stop)
#define MIN_CACHE_LINE_SIZE 8 /* conservative value */
-static void inline flush_icache_range(unsigned long start, unsigned long stop)
+static inline void flush_icache_range(unsigned long start, unsigned long stop)
{
unsigned long p;
@@ -68,7 +68,7 @@ static inline void flush_icache_range(unsigned long start, unsigned long stop)
asm ("imb");
}
#elif defined(__sparc__)
-static void inline flush_icache_range(unsigned long start, unsigned long stop)
+static inline void flush_icache_range(unsigned long start, unsigned long stop)
{
unsigned long p;