|
From: <sv...@va...> - 2013-05-08 08:56:55
|
sewardj 2013-05-08 09:56:45 +0100 (Wed, 08 May 2013)
New Revision: 2718
Log:
Get rid of gcc warning on non-MIPS platforms.
Modified files:
trunk/priv/host_mips_isel.c
Modified: trunk/priv/host_mips_isel.c (+4 -0)
===================================================================
--- trunk/priv/host_mips_isel.c 2013-05-05 16:04:30 +01:00 (rev 2717)
+++ trunk/priv/host_mips_isel.c 2013-05-08 09:56:45 +01:00 (rev 2718)
@@ -365,6 +365,10 @@
#elif defined (_MIPSEB)
addInstr(env, MIPSInstr_Store(4, am_addr0, r_srcHi, mode64));
addInstr(env, MIPSInstr_Store(4, am_addr1, r_srcLo, mode64));
+#else
+ /* Stop gcc on other platforms complaining about am_addr1 being set
+ but not used. */
+ (void)am_addr1;
#endif
/* load as float */
|