summaryrefslogtreecommitdiffstats
path: root/util/romcc/Makefile
diff options
context:
space:
mode:
authorEric Biederman <ebiederm@xmission.com>2003-07-12 01:21:31 +0000
committerEric Biederman <ebiederm@xmission.com>2003-07-12 01:21:31 +0000
commite058a1e418d117043a2ff09a8000b31f8097328b (patch)
tree0e7473aa5bf8f46528c9e11a4c5b8a9d5b687fa4 /util/romcc/Makefile
parenta3c708b5d2b4857b19a992ae9694a29e0fa8d9a2 (diff)
downloadcoreboot-e058a1e418d117043a2ff09a8000b31f8097328b.tar.gz
coreboot-e058a1e418d117043a2ff09a8000b31f8097328b.tar.bz2
coreboot-e058a1e418d117043a2ff09a8000b31f8097328b.zip
- Structure handling fixes.
- Fix for asm statements with multiple results. git-svn-id: svn://svn.coreboot.org/coreboot/trunk@942 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'util/romcc/Makefile')
-rw-r--r--util/romcc/Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/util/romcc/Makefile b/util/romcc/Makefile
index 6161ad3e1e1d..71a97d1f25e6 100644
--- a/util/romcc/Makefile
+++ b/util/romcc/Makefile
@@ -74,6 +74,7 @@ TESTS=\
simple_test54.c \
simple_test55.c \
simple_test56.c \
+ simple_test59.c \
raminit_test.c \
raminit_test2.c \
raminit_test3.c \
@@ -95,10 +96,10 @@ FAIL_OUT:=$(patsubst %.c, tests/%.out, $(FAIL_TESTS))
$(TEST_ASM): %.S: %.c romcc
- export ALLOC_CHECK_=2; ./romcc -O2 -mcpu=k8 -o $@ $< > $*.debug
+ export ALLOC_CHECK_=2; ./romcc -O -mcpu=k8 -o $@ $< > $*.debug
$(FAIL_OUT): %.out: %.c romcc
- export ALLOC_CHECK_=2; if ./romcc -O2 -o $*.S $< > $*.debug 2> $@ ; then exit 1 ; else exit 0 ; fi
+ export ALLOC_CHECK_=2; if ./romcc -O -o $*.S $< > $*.debug 2> $@ ; then exit 1 ; else exit 0 ; fi
$(TEST_OBJ): %.o: %.S
as $< -o $@