[Coroutines] Passify the build bots. Remove restart-trigger.ll test for now
authorGor Nishanov <GorNishanov@gmail.com>
Sat, 6 Aug 2016 21:01:22 +0000 (21:01 +0000)
committerGor Nishanov <GorNishanov@gmail.com>
Sat, 6 Aug 2016 21:01:22 +0000 (21:01 +0000)
llvm-svn: 277937

llvm/test/Transforms/Coroutines/restart-trigger.ll [deleted file]

diff --git a/llvm/test/Transforms/Coroutines/restart-trigger.ll b/llvm/test/Transforms/Coroutines/restart-trigger.ll
deleted file mode 100644 (file)
index 5a186c1..0000000
+++ /dev/null
@@ -1,16 +0,0 @@
-; Verifies that restart trigger forces IPO pipelines restart and the same
-; coroutine is looked at by CoroSplit pass twice.
-; RUN: opt < %s -S -O0 -enable-coroutines -debug-only=coro-split 2>&1 | FileCheck %s
-; RUN: opt < %s -S -O1 -enable-coroutines -debug-only=coro-split 2>&1 | FileCheck %s
-
-; CHECK:      CoroSplit: Processing coroutine 'f' state: 0
-; CHECK-NEXT: CoroSplit: Processing coroutine 'f' state: 1
-
-declare i8* @llvm.coro.begin(i8*, i32, i8*, i8*)
-
-; a coroutine start function
-define i8* @f() {
-entry:
-  %hdl = call i8* @llvm.coro.begin(i8* null, i32 0, i8* null, i8* null)
-  ret i8* %hdl
-}