diff options
author | notaz | 2011-08-12 01:17:36 +0300 |
---|---|---|
committer | notaz | 2011-08-13 00:56:40 +0300 |
commit | 1db5bc1ed7f992d7c2686f5359e53301eba2b2ca (patch) | |
tree | 951af157c0c23d247590df443ac514181bf9a635 /plugins/gpu_unai/Makefile | |
parent | 53636f1583b53672d6908eff1aeff7213ee11e34 (diff) | |
download | pcsx_rearmed-1db5bc1ed7f992d7c2686f5359e53301eba2b2ca.tar.gz pcsx_rearmed-1db5bc1ed7f992d7c2686f5359e53301eba2b2ca.tar.bz2 pcsx_rearmed-1db5bc1ed7f992d7c2686f5359e53301eba2b2ca.zip |
gpu_unai: fix inline asm statements
newer gcc reorders them and was allocating registers wrong due to
incomplete constraints.
Not that this code is any better than what gcc generates anyway,
but whatever.
Diffstat (limited to 'plugins/gpu_unai/Makefile')
-rw-r--r-- | plugins/gpu_unai/Makefile | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/plugins/gpu_unai/Makefile b/plugins/gpu_unai/Makefile index e7640c6..026d950 100644 --- a/plugins/gpu_unai/Makefile +++ b/plugins/gpu_unai/Makefile @@ -8,8 +8,6 @@ ifdef MAEMO CFLAGS += -DMAEMO endif CFLAGS += -mcpu=cortex-a8 -mtune=cortex-a8 -mfpu=neon -mfloat-abi=softfp -# -fschedule-insns (from -O2+) causes bugs, probably bad asm() statements -CFLAGS += -fno-schedule-insns -fno-schedule-insns2 TARGET = gpuPCSX4ALL.so LDFLAGS += -shared -Wl,-soname,$(TARGET) |