From eb38c52c2a6df76928c1a4760bc87d21b256e22a Mon Sep 17 00:00:00 2001 From: blueswir1 Date: Sat, 6 Sep 2008 17:47:39 +0000 Subject: 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 --- target-i386/op_helper.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'target-i386') diff --git a/target-i386/op_helper.c b/target-i386/op_helper.c index 0b5fdc0..32cdf2a 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 -- cgit v1.1