mirror of
https://github.com/cc65/cc65.git
synced 2024-12-25 17:29:50 +00:00
Merge pull request #391 from greg-king5/yaccdbg-fix
Fix the "yaccdbg.c" compiler regression test.
This commit is contained in:
commit
ca3e5e8b8c
@ -1,4 +1,3 @@
|
|||||||
|
|
||||||
# makefile for the regression tests that generate output which has to be
|
# makefile for the regression tests that generate output which has to be
|
||||||
# compared with reference output
|
# compared with reference output
|
||||||
|
|
||||||
@ -24,7 +23,7 @@ WORKDIR := ..$S..$Stestwrk
|
|||||||
DIFF := $(WORKDIR)/bdiff
|
DIFF := $(WORKDIR)/bdiff
|
||||||
|
|
||||||
CC := gcc
|
CC := gcc
|
||||||
CFLAGS := -O2 -Wall -W -Wextra -fwrapv -fno-strict-overflow
|
CFLAGS := -O2 -Wall -W -Wextra -funsigned-char -fwrapv -fno-strict-overflow
|
||||||
|
|
||||||
.PHONY: all clean
|
.PHONY: all clean
|
||||||
|
|
||||||
@ -34,6 +33,11 @@ TESTS := $(foreach option,. .o. .os. .osi. .osir. .oi. .oir. .or.,$(SOURCES:%.c=
|
|||||||
|
|
||||||
all: $(REFS) $(TESTS)
|
all: $(REFS) $(TESTS)
|
||||||
|
|
||||||
|
# "yaccdbg.c" includes "yacc.c".
|
||||||
|
# yaccdbg's built files must depend on both of them.
|
||||||
|
|
||||||
|
$(WORKDIR)/yaccdbg.ref: yacc.c
|
||||||
|
|
||||||
$(WORKDIR)/%.ref: %.c
|
$(WORKDIR)/%.ref: %.c
|
||||||
$(CC) $(CFLAGS) $< -o $(WORKDIR)/$*.host
|
$(CC) $(CFLAGS) $< -o $(WORKDIR)/$*.host
|
||||||
$(WORKDIR)$S$*.host > $@
|
$(WORKDIR)$S$*.host > $@
|
||||||
@ -48,6 +52,8 @@ $(WORKDIR)/switch.%rg: CC65FLAGS += -Wc --all-cdecl
|
|||||||
$(WORKDIR)/yacc.%rg: CC65FLAGS += -Wc --all-cdecl
|
$(WORKDIR)/yacc.%rg: CC65FLAGS += -Wc --all-cdecl
|
||||||
$(WORKDIR)/yaccdbg%prg: CC65FLAGS += -Wc --all-cdecl
|
$(WORKDIR)/yaccdbg%prg: CC65FLAGS += -Wc --all-cdecl
|
||||||
|
|
||||||
|
$(WORKDIR)/yaccdbg%prg: yacc.c
|
||||||
|
|
||||||
$(WORKDIR)/%.prg: %.c $(WORKDIR)/%.ref
|
$(WORKDIR)/%.prg: %.c $(WORKDIR)/%.ref
|
||||||
$(CL65) $(CC65FLAGS) $< -o $@
|
$(CL65) $(CC65FLAGS) $< -o $@
|
||||||
$(SIM65) $(SIM65FLAGS) $@ > $(WORKDIR)/$*.out
|
$(SIM65) $(SIM65FLAGS) $@ > $(WORKDIR)/$*.out
|
||||||
|
@ -562,7 +562,7 @@ yylook()
|
|||||||
}
|
}
|
||||||
|
|
||||||
# ifdef LEXDEBUG
|
# ifdef LEXDEBUG
|
||||||
if((*(lsp-1)-yysvec-1)<0)
|
if (*(lsp-1) < yysvec + 1)
|
||||||
{
|
{
|
||||||
fprintf(yyout,"yylook: stopped (end)\n");
|
fprintf(yyout,"yylook: stopped (end)\n");
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user