diff options
author | Gor Nishanov <GorNishanov@gmail.com> | 2016-08-06 21:01:22 +0000 |
---|---|---|
committer | Gor Nishanov <GorNishanov@gmail.com> | 2016-08-06 21:01:22 +0000 |
commit | 874651129e0d56f8de9676de5302fce96299b343 (patch) | |
tree | d130dc422cb0c2be88dc581438485e95249c10c9 | |
parent | 2ed6e788a8f5d5fc953582277e5dd9ec2cad449a (diff) | |
download | bcm5719-llvm-874651129e0d56f8de9676de5302fce96299b343.tar.gz bcm5719-llvm-874651129e0d56f8de9676de5302fce96299b343.zip |
[Coroutines] Passify the build bots. Remove restart-trigger.ll test for now
llvm-svn: 277937
-rw-r--r-- | llvm/test/Transforms/Coroutines/restart-trigger.ll | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/llvm/test/Transforms/Coroutines/restart-trigger.ll b/llvm/test/Transforms/Coroutines/restart-trigger.ll deleted file mode 100644 index 5a186c1695a..00000000000 --- 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 -} |