Commit 3611a29c090fc74faee3ce05b8ede7287f609e44
1 parent
0f6e3eb2
-fno-gcse option for opcodes to use asm macros with gcc >= 3.3 on i386 (Piotr Krysik)
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1043 c046a42c-6fe2-441c-8c8c-71466251a162
Showing
1 changed file
with
1 additions
and
1 deletions
Makefile.target
... | ... | @@ -73,7 +73,7 @@ ifeq ($(ARCH),i386) |
73 | 73 | CFLAGS+=-fomit-frame-pointer |
74 | 74 | OP_CFLAGS=$(CFLAGS) -mpreferred-stack-boundary=2 |
75 | 75 | ifeq ($(HAVE_GCC3_OPTIONS),yes) |
76 | -OP_CFLAGS+= -falign-functions=0 | |
76 | +OP_CFLAGS+= -falign-functions=0 -fno-gcse | |
77 | 77 | else |
78 | 78 | OP_CFLAGS+= -malign-functions=0 |
79 | 79 | endif | ... | ... |