diff options
author | ths <ths@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-06-20 15:12:14 +0000 |
---|---|---|
committer | ths <ths@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-06-20 15:12:14 +0000 |
commit | 76499532e012e796c1696d23fba1bb55830b20fd (patch) | |
tree | da132b4499b58cc6e4ecc8dfe12bb801e71914d0 /target-mips/op.c | |
parent | ed71ebb2cc176bbd442c2095f9b6c393893cdb4b (diff) | |
download | qemu-76499532e012e796c1696d23fba1bb55830b20fd.tar.gz qemu-76499532e012e796c1696d23fba1bb55830b20fd.tar.bz2 qemu-76499532e012e796c1696d23fba1bb55830b20fd.zip |
Convert unaligned load/store to TCG.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4759 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'target-mips/op.c')
-rw-r--r-- | target-mips/op.c | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/target-mips/op.c b/target-mips/op.c index d617a076d5..cbe4f413b6 100644 --- a/target-mips/op.c +++ b/target-mips/op.c @@ -19,29 +19,3 @@ * License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ - -#include "config.h" -#include "exec.h" -#include "host-utils.h" - -#ifndef CALL_FROM_TB0 -#define CALL_FROM_TB0(func) func() -#endif - -/* Load and store */ -#define MEMSUFFIX _raw -#include "op_mem.c" -#undef MEMSUFFIX -#if !defined(CONFIG_USER_ONLY) -#define MEMSUFFIX _user -#include "op_mem.c" -#undef MEMSUFFIX - -#define MEMSUFFIX _super -#include "op_mem.c" -#undef MEMSUFFIX - -#define MEMSUFFIX _kernel -#include "op_mem.c" -#undef MEMSUFFIX -#endif |