- Massive set of cleanups/fixes for romcc. Lots of corner cases now work

properly.  And a few long standing bugs have been rooted out and removed.


git-svn-id: svn://svn.coreboot.org/coreboot/trunk@931 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
Eric Biederman
2003-07-01 10:05:30 +00:00
parent 57fa1b8279
commit 530b5193e4
10 changed files with 3317 additions and 491 deletions

View File

@@ -1,5 +1,5 @@
VERSION:=0.32
RELEASE_DATE:=28 June 2003
VERSION:=0.33
RELEASE_DATE:=1 July 2003
PACKAGE:=romcc
@@ -67,10 +67,18 @@ TESTS=\
simple_test45.c \
simple_test46.c \
simple_test47.c \
simple_test48.c \
simple_test49.c \
simple_test50.c \
simple_test51.c \
simple_test52.c \
simple_test53.c \
simple_test54.c \
raminit_test.c \
raminit_test2.c \
raminit_test3.c \
raminit_test4.c
raminit_test4.c \
raminit_test5.c
FAIL_TESTS = \
fail_test1.c
@@ -85,7 +93,7 @@ FAIL_OUT:=$(patsubst %.c, tests/%.out, $(FAIL_TESTS))
$(TEST_ASM): %.S: %.c romcc
export ALLOC_CHECK_=2; ./romcc -mcpu=k8 -O -o $@ $< > $*.debug
export ALLOC_CHECK_=2; ./romcc -O -mcpu=k8 -o $@ $< > $*.debug
$(FAIL_OUT): %.out: %.c romcc
export ALLOC_CHECK_=2; if ./romcc -O -o $*.S $< > $*.debug 2> $@ ; then exit 1 ; else exit 0 ; fi
@@ -96,7 +104,7 @@ $(TEST_OBJ): %.o: %.S
$(TEST_ELF): %.elf: %.o tests/ldscript.ld
ld -T tests/ldscript.ld $< -o $@
test: $(TEST_ELF)
test: $(TEST_ELF) $(FAIL_OUT)
echo:
echo "TEST_SRCS=$(TEST_SRCS)"