From 874651129e0d56f8de9676de5302fce96299b343 Mon Sep 17 00:00:00 2001 From: Gor Nishanov Date: Sat, 6 Aug 2016 21:01:22 +0000 Subject: [PATCH] [Coroutines] Passify the build bots. Remove restart-trigger.ll test for now llvm-svn: 277937 --- llvm/test/Transforms/Coroutines/restart-trigger.ll | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 llvm/test/Transforms/Coroutines/restart-trigger.ll diff --git a/llvm/test/Transforms/Coroutines/restart-trigger.ll b/llvm/test/Transforms/Coroutines/restart-trigger.ll deleted file mode 100644 index 5a186c1..0000000 --- a/llvm/test/Transforms/Coroutines/restart-trigger.ll +++ /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 -} -- 2.7.4