diff options
author | blueswir1 <blueswir1@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-09-06 17:47:39 +0000 |
---|---|---|
committer | blueswir1 <blueswir1@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-09-06 17:47:39 +0000 |
commit | eb38c52c2a6df76928c1a4760bc87d21b256e22a (patch) | |
tree | 0b391e1d33f6f47a90f7c3fa8e63e863ee9f1b8e /target-i386/op_helper.c | |
parent | Some little fixes on QEMU (diff) | |
download | qemu-kvm-eb38c52c2a6df76928c1a4760bc87d21b256e22a.tar.gz qemu-kvm-eb38c52c2a6df76928c1a4760bc87d21b256e22a.tar.bz2 qemu-kvm-eb38c52c2a6df76928c1a4760bc87d21b256e22a.zip |
Fix most warnings that would be caused by gcc flag -Wundef
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5173 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'target-i386/op_helper.c')
-rw-r--r-- | target-i386/op_helper.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target-i386/op_helper.c b/target-i386/op_helper.c index 0b5fdc04c..32cdf2ad1 100644 --- a/target-i386/op_helper.c +++ b/target-i386/op_helper.c @@ -1217,7 +1217,7 @@ void do_interrupt(int intno, int is_int, int error_code, } } if (env->cr[0] & CR0_PE_MASK) { -#if TARGET_X86_64 +#ifdef TARGET_X86_64 if (env->hflags & HF_LMA_MASK) { do_interrupt64(intno, is_int, error_code, next_eip, is_hw); } else |