diff options
author | Nebuleon Fumika | 2013-01-12 03:15:28 -0500 |
---|---|---|
committer | Nebuleon Fumika | 2013-01-12 03:15:28 -0500 |
commit | 75690d5e91e2585fd096a8f7e5eeeb1bd510023e (patch) | |
tree | a3d75a7913f22ab7fb66c55093cae2f922306d24 | |
parent | 4717df648553565d4ed657c455c8675ae55ac77e (diff) | |
download | snes9x2005-75690d5e91e2585fd096a8f7e5eeeb1bd510023e.tar.gz snes9x2005-75690d5e91e2585fd096a8f7e5eeeb1bd510023e.tar.bz2 snes9x2005-75690d5e91e2585fd096a8f7e5eeeb1bd510023e.zip |
Loop unrolling sucks. It was adding loads of instructions per audio sample.
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -64,7 +64,7 @@ CFLAGS := -mips32 -mno-abicalls -fno-pic -fno-builtin \ -fno-exceptions -ffunction-sections -mno-long-calls \
-msoft-float -G 4 \
-O3 -fomit-frame-pointer -fgcse-sm -fgcse-las -fgcse-after-reload \
- -fweb -funroll-loops
+ -fweb
DEFS := -DSPC700_C -DEXECUTE_SUPERFX_PER_LINE -DSDD1_DECOMP \
-DVAR_CYCLES -DCPU_SHUTDOWN -DSPC700_SHUTDOWN \
|