-
Notifications
You must be signed in to change notification settings - Fork 15.1k
Description
| Bugzilla Link | 1283 |
| Resolution | FIXED |
| Resolved on | Feb 22, 2010 12:54 |
| Version | trunk |
| OS | Linux |
| Reporter | LLVM Bugzilla Contributor |
Extended Description
Last night's run of my nightly test yielded errors like:
*** No rule to make target Output/sumarray-dbl.linked.rbc', needed by Output/sumarray-dbl.linked.bc'
for every single test program. The consequence was no results. The only change
to the makefile system was this:
--- Makefile.programs 21 Mar 2007 00:19:32 -0000 1.263
+++ Makefile.programs 28 Mar 2007 08:31:17 -0000 1.264
@@ -221,12 +221,11 @@ LLCBETAOPTION := -sched=list-td
endif
ifeq ($(ARCH),IA64)
LLCBETAOPTION := -sched=simple
endif
ifeq ($(ARCH),x86)
-LLCBETAOPTION := -enable-rematerialization
-# -enable-tail-merge
+LLCBETAOPTION := -enable-tail-merge
#-regalloc=local -fast
endif
ifeq ($(ARCH),Sparc)
LLCBETAOPTION := -enable-sparc-v9-insts
endif
But, I don't see how that could cause this problem.