|
From: <sv...@va...> - 2015-05-16 16:16:44
|
Author: florian
Date: Sat May 16 17:16:37 2015
New Revision: 3146
Log:
Cleanups to allow compilation with -Wold-style-declaration.
Modified:
trunk/priv/guest_s390_toIR.c
trunk/priv/ir_inject.c
Modified: trunk/priv/guest_s390_toIR.c
==============================================================================
--- trunk/priv/guest_s390_toIR.c (original)
+++ trunk/priv/guest_s390_toIR.c Sat May 16 17:16:37 2015
@@ -235,7 +235,7 @@
}
/* Add a statement that stores DATA at ADDR. This is a big-endian machine. */
-static void __inline__
+static __inline__ void
store(IRExpr *addr, IRExpr *data)
{
stmt(IRStmt_Store(Iend_BE, addr, data));
Modified: trunk/priv/ir_inject.c
==============================================================================
--- trunk/priv/ir_inject.c (original)
+++ trunk/priv/ir_inject.c Sat May 16 17:16:37 2015
@@ -141,7 +141,7 @@
/* Store a value to memory. If a value requires more than 8 bytes a series
of 8-byte stores will be generated. */
-static void __inline__
+static __inline__ void
store(IRSB *irsb, IREndness endian, HWord haddr, IRExpr *data)
{
IROp high, low;
|