diff options
author | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2004-08-03 21:42:45 +0000 |
---|---|---|
committer | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2004-08-03 21:42:45 +0000 |
commit | 3611a29c090fc74faee3ce05b8ede7287f609e44 (patch) | |
tree | 4680a154ade8d2ae5e7bf4b7f6873f9b6e59bb94 /Makefile.target | |
parent | 0f6e3eb211fafeadd598e960a35bfa3a3b8bfc50 (diff) |
-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
Diffstat (limited to 'Makefile.target')
-rw-r--r-- | Makefile.target | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.target b/Makefile.target index 0e70065112..6d5849071d 100644 --- a/Makefile.target +++ b/Makefile.target @@ -73,7 +73,7 @@ ifeq ($(ARCH),i386) CFLAGS+=-fomit-frame-pointer OP_CFLAGS=$(CFLAGS) -mpreferred-stack-boundary=2 ifeq ($(HAVE_GCC3_OPTIONS),yes) -OP_CFLAGS+= -falign-functions=0 +OP_CFLAGS+= -falign-functions=0 -fno-gcse else OP_CFLAGS+= -malign-functions=0 endif |