diff options
author | ths <ths@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-10-09 03:12:08 +0000 |
---|---|---|
committer | ths <ths@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-10-09 03:12:08 +0000 |
commit | 4e9f853731f060236d9036663c12ca0594395d0d (patch) | |
tree | a9ddb70c5c70d8a5d520f0a35f6739928a413f14 /target-mips/op_helper.c | |
parent | 0e21e12bb311c4c1095d0269dc2ef81196ccb60a (diff) |
Fix [ls][wd][lr] instructions, by Aurelien Jarno.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3372 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'target-mips/op_helper.c')
-rw-r--r-- | target-mips/op_helper.c | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/target-mips/op_helper.c b/target-mips/op_helper.c index f4313280e8..3c23d8c362 100644 --- a/target-mips/op_helper.c +++ b/target-mips/op_helper.c @@ -62,18 +62,6 @@ void do_raise_exception_direct (uint32_t exception) do_raise_exception_direct_err (exception, 0); } -#define MEMSUFFIX _raw -#include "op_helper_mem.c" -#undef MEMSUFFIX -#if !defined(CONFIG_USER_ONLY) -#define MEMSUFFIX _user -#include "op_helper_mem.c" -#undef MEMSUFFIX -#define MEMSUFFIX _kernel -#include "op_helper_mem.c" -#undef MEMSUFFIX -#endif - #if defined(TARGET_MIPSN32) || defined(TARGET_MIPS64) #if TARGET_LONG_BITS > HOST_LONG_BITS /* Those might call libgcc functions. */ |