diff options
author | Eric Biederman <ebiederm@xmission.com> | 2003-06-16 16:57:34 +0000 |
---|---|---|
committer | Eric Biederman <ebiederm@xmission.com> | 2003-06-16 16:57:34 +0000 |
commit | f96a810f11681ba436b446e9451e02cffcd525f5 (patch) | |
tree | 93564c28ab184dc3fe53f6576de95b2ce1c8e5e6 /util/romcc/Makefile | |
parent | d3e377a520d6ad5997f2ef7c8fc1b823d6d0e7f2 (diff) |
- Reduce the algorithmic complexity of parts of the register allocator
so the worst case runtime of romcc is much more predictable
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@879 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'util/romcc/Makefile')
-rw-r--r-- | util/romcc/Makefile | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/util/romcc/Makefile b/util/romcc/Makefile index d2d4e7dcb9..9909b87d5a 100644 --- a/util/romcc/Makefile +++ b/util/romcc/Makefile @@ -1,5 +1,5 @@ -VERSION:=0.27 -RELEASE_DATE:=10 June 2003 +VERSION:=0.28 +RELEASE_DATE:=16 June 2003 PACKAGE:=romcc @@ -52,7 +52,8 @@ TESTS=\ simple_test31.c \ raminit_test.c \ raminit_test2.c \ - raminit_test3.c + raminit_test3.c \ + raminit_test4.c TEST_SRCS:=$(patsubst %, tests/%, $(TESTS)) TEST_ASM:=$(patsubst %.c, tests/%.S, $(TESTS)) @@ -77,5 +78,5 @@ echo: echo "TEST_ELF=$(TEST_ELF)" clean: - rm -f romcc core $(TEST_ASM) $(TEST_OBJ) $(TEST_ELF) tests/*.debug tests/*.debug2 + rm -f romcc romcc_pg core $(TEST_ASM) $(TEST_OBJ) $(TEST_ELF) tests/*.debug tests/*.debug2 tests/*.gmon.out |