summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2008-08-24 21:45:30 +0000
committerBill Wendling <isanbard@gmail.com>2008-08-24 21:45:30 +0000
commit59b63e4a1827b4096c997eec0983aecb3676695f (patch)
tree4bf7a5cb34b3d9dcf24911a12399801ac7e66a8e /test
parent415b414a8f20d3f2a45fccbbdaf9f4830cc9ea58 (diff)
downloadllvm-59b63e4a1827b4096c997eec0983aecb3676695f.tar.gz
llvm-59b63e4a1827b4096c997eec0983aecb3676695f.tar.bz2
llvm-59b63e4a1827b4096c997eec0983aecb3676695f.tar.xz
Temporarily reverting r55292. It's causing a bootstraping failure:
/Volumes/Sandbox/Buildbot/llvm/full-llvm/build/llvm-gcc.obj/./gcc/xgcc ... src/libiberty/make-temp-file.c -o make-temp-file.o Assertion failed: (Node2Index[SU->NodeNum] > Node2Index[I->Dep->NodeNum] && "Wrong topological sorting"), function InitDAGTopologicalSorting, file /Volumes/Sandbox/Buildbot/llvm/full-llvm/build/llvm.src/lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp, line 508. ../../../../llvm-gcc.src/libiberty/hashtab.c:955: internal compiler error: Abort trap Please submit a full bug report, with preprocessed source if appropriate. See <URL:http://developer.apple.com/bugreporter> for instructions. make[4]: *** [hashtab.o] Error 1 make[4]: *** Waiting for unfinished jobs.... make[3]: *** [multi-do] Error 1 make[2]: *** [all] Error 2 make[1]: *** [all-target-libiberty] Error 2 make: *** [all] Error 2 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@55295 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r--test/CodeGen/X86/fold-call-2.ll10
1 files changed, 0 insertions, 10 deletions
diff --git a/test/CodeGen/X86/fold-call-2.ll b/test/CodeGen/X86/fold-call-2.ll
index 349f986830..e69de29bb2 100644
--- a/test/CodeGen/X86/fold-call-2.ll
+++ b/test/CodeGen/X86/fold-call-2.ll
@@ -1,10 +0,0 @@
-; RUN: llvm-as < %s | llc -mtriple=i386-apple-darwin | grep mov | count 1
-
-@f = external global void ()* ; <void ()**> [#uses=1]
-
-define i32 @main() nounwind {
-entry:
- load void ()** @f, align 8 ; <void ()*>:0 [#uses=1]
- tail call void %0( ) nounwind
- ret i32 0
-}