[llvm] r277937 - [Coroutines] Passify the build bots. Remove restart-trigger.ll test for now

Gor Nishanov via llvm-commits llvm-commits at lists.llvm.org
Sat Aug 6 14:01:22 PDT 2016


Author: gornishanov
Date: Sat Aug  6 16:01:22 2016
New Revision: 277937

URL: http://llvm.org/viewvc/llvm-project?rev=277937&view=rev
Log:
[Coroutines] Passify the build bots. Remove restart-trigger.ll test for now

Removed:
    llvm/trunk/test/Transforms/Coroutines/restart-trigger.ll

Removed: llvm/trunk/test/Transforms/Coroutines/restart-trigger.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Transforms/Coroutines/restart-trigger.ll?rev=277936&view=auto
==============================================================================
--- llvm/trunk/test/Transforms/Coroutines/restart-trigger.ll (original)
+++ llvm/trunk/test/Transforms/Coroutines/restart-trigger.ll (removed)
@@ -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
-}




More information about the llvm-commits mailing list