[Statepoints] Remove broken test case.
authorSanjoy Das <sanjoy@playingwithpointers.com>
Wed, 6 May 2015 02:51:46 +0000 (02:51 +0000)
committerSanjoy Das <sanjoy@playingwithpointers.com>
Wed, 6 May 2015 02:51:46 +0000 (02:51 +0000)
statepoint-indirect-return.ll breaks on linux systems.  Delete the test
case to make the bots green while I figure out what the right fix is.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@236568 91177308-0d34-0410-b5e6-96231b3b80d8

test/CodeGen/X86/statepoint-indirect-return.ll [deleted file]

diff --git a/test/CodeGen/X86/statepoint-indirect-return.ll b/test/CodeGen/X86/statepoint-indirect-return.ll
deleted file mode 100644 (file)
index 9111eee..0000000
+++ /dev/null
@@ -1,29 +0,0 @@
-; RUN: llc < %s | FileCheck %s
-
-declare i1024 @g()
-
-define i1024 @f() gc "statepoint-example" {
-; CHECK-LABEL: _f
-; CHECK: callq _g
-  %1 = invoke i32 (i1024 ()*, i32, i32, ...) @llvm.experimental.gc.statepoint.p0f_i1024f(i1024 ()* @g, i32 0, i32 0, i32 0)
-          to label %normal unwind label %except
-
-normal:                                           ; preds = %0
-  %x1 = call i1024 @llvm.experimental.gc.result.i1024(i32 %1)
-  ret i1024 %x1
-
-except:                                           ; preds = %0
-  %landing_pad = landingpad { i8*, i32 } personality i32 ()* @personality_function
-          cleanup
-  ret i1024 0
-}
-
-declare i32 @personality_function()
-
-; Function Attrs: nounwind
-declare i32 @llvm.experimental.gc.statepoint.p0f_i1024f(i1024 ()*, i32, i32, ...) #0
-
-; Function Attrs: nounwind
-declare i1024 @llvm.experimental.gc.result.i1024(i32) #0
-
-attributes #0 = { nounwind }