1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-26 20:29:34 +00:00

remove workaround for optimizer bug

This commit is contained in:
mrdudz 2015-06-29 02:34:12 +02:00
parent 72e4c10772
commit 5b1917d23f

View File

@ -49,8 +49,8 @@ $(WORKDIR)/switch.%rg: CC65FLAGS += -Wc --all-cdecl
# Also, yacc.c does some things that fail when stack operations are optimized.
# Therefore, don't optimize them.
#
$(WORKDIR)/yacc.%rg: CC65FLAGS += -Wc --all-cdecl,--disable-opt,OptStackOps
$(WORKDIR)/yaccdbg%prg: CC65FLAGS += -Wc --all-cdecl,--disable-opt,OptStackOps
$(WORKDIR)/yacc.%rg: CC65FLAGS += -Wc --all-cdecl
$(WORKDIR)/yaccdbg%prg: CC65FLAGS += -Wc --all-cdecl
$(WORKDIR)/%.prg: %.c $(WORKDIR)/%.ref
$(CL65) $(CC65FLAGS) $< -o $@