diff options
author | blueswir1 | 2008-03-21 19:08:59 +0100 |
---|---|---|
committer | blueswir1 | 2008-03-21 19:08:59 +0100 |
commit | 2b29924f8c65fda8047e5c19f616ac5617b75a14 (patch) | |
tree | 53e89c79e53cc37ed97b3591c2d639117c3fba30 /target-sparc/op.c | |
parent | Wire up TC signal from Aux1 to FDC (diff) | |
download | qemu-2b29924f8c65fda8047e5c19f616ac5617b75a14.tar.gz qemu-2b29924f8c65fda8047e5c19f616ac5617b75a14.tar.xz qemu-2b29924f8c65fda8047e5c19f616ac5617b75a14.zip |
Convert align checks to TCG
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4097 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'target-sparc/op.c')
-rw-r--r-- | target-sparc/op.c | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/target-sparc/op.c b/target-sparc/op.c index cc4aa14acb..e06cd8138d 100644 --- a/target-sparc/op.c +++ b/target-sparc/op.c @@ -36,15 +36,3 @@ #include "op_mem.h" #endif #endif - -#define CHECK_ALIGN_OP(align) \ - void OPPROTO op_check_align_T0_ ## align (void) \ - { \ - if (T0 & align) \ - raise_exception(TT_UNALIGNED); \ - FORCE_RET(); \ - } - -CHECK_ALIGN_OP(1) -CHECK_ALIGN_OP(3) -CHECK_ALIGN_OP(7) |