Moved testcase for issue #1397.

This commit is contained in:
acqn 2021-02-13 22:11:01 +08:00 committed by greg-king5
parent 55ae350fed
commit 131f96eb1e
2 changed files with 0 additions and 8 deletions

View File

@ -108,14 +108,6 @@ $(WORKDIR)/bug1265.$1.$2.prg: bug1265.c | $(WORKDIR)
$(LD65) -t sim$2 -o $$@ $$(@:.prg=.o) sim$2.lib $(NULLERR)
$(SIM65) $(SIM65FLAGS) $$@ $(NULLOUT) $(NULLERR)
# this one fails with optimizations, without OptBoolTrans it works
$(WORKDIR)/bug1397.$1.$2.prg: bug1397.c | $(WORKDIR)
$(if $(QUIET),echo misc/bug1397.$1.$2.prg)
$(CC65) -O --disable-opt OptBoolTrans -t sim$2 -$1 -o $$(@:.prg=.s) $$< $(NULLERR)
$(CA65) -t sim$2 -o $$(@:.prg=.o) $$(@:.prg=.s) $(NULLERR)
$(LD65) -t sim$2 -o $$@ $$(@:.prg=.o) sim$2.lib $(NULLERR)
$(SIM65) $(SIM65FLAGS) $$@ $(NULLOUT) $(NULLERR)
# should compile, but then hangs in an endless loop
$(WORKDIR)/endless.$1.$2.prg: endless.c | $(WORKDIR)
$(if $(QUIET),echo misc/endless.$1.$2.prg)