[llvm] r236568 - [Statepoints] Remove broken test case.

Sanjoy Das sanjoy at playingwithpointers.com
Tue May 5 19:51:47 PDT 2015


Author: sanjoy
Date: Tue May  5 21:51:46 2015
New Revision: 236568

URL: http://llvm.org/viewvc/llvm-project?rev=236568&view=rev
Log:
[Statepoints] Remove broken test case.

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.

Removed:
    llvm/trunk/test/CodeGen/X86/statepoint-indirect-return.ll

Removed: llvm/trunk/test/CodeGen/X86/statepoint-indirect-return.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/X86/statepoint-indirect-return.ll?rev=236567&view=auto
==============================================================================
--- llvm/trunk/test/CodeGen/X86/statepoint-indirect-return.ll (original)
+++ llvm/trunk/test/CodeGen/X86/statepoint-indirect-return.ll (removed)
@@ -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 }





More information about the llvm-commits mailing list