diff options
author | Matt Arsenault <Matthew.Arsenault@amd.com> | 2013-10-02 20:29:00 +0000 |
---|---|---|
committer | Matt Arsenault <Matthew.Arsenault@amd.com> | 2013-10-02 20:29:00 +0000 |
commit | 55cfb52aa302613b7cbe6a748f75985980577427 (patch) | |
tree | bd48202700b58a4afb7f1ab8b5615a136fd1a1b4 /test/Transforms/LoopVectorize/lifetime.ll | |
parent | d0132a783341696eba8ac97b83ae3388d95b4563 (diff) | |
download | external_llvm-55cfb52aa302613b7cbe6a748f75985980577427.zip external_llvm-55cfb52aa302613b7cbe6a748f75985980577427.tar.gz external_llvm-55cfb52aa302613b7cbe6a748f75985980577427.tar.bz2 |
Fix missing CHECK-LABELs
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@191853 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Transforms/LoopVectorize/lifetime.ll')
-rw-r--r-- | test/Transforms/LoopVectorize/lifetime.ll | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/Transforms/LoopVectorize/lifetime.ll b/test/Transforms/LoopVectorize/lifetime.ll index 87006ed..4f6f3b8 100644 --- a/test/Transforms/LoopVectorize/lifetime.ll +++ b/test/Transforms/LoopVectorize/lifetime.ll @@ -4,7 +4,7 @@ target datalayout = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f3 ; Make sure we can vectorize loops which contain lifetime markers. -; CHECK-LABEL: test +; CHECK-LABEL: @test( ; CHECK: call void @llvm.lifetime.end ; CHECK: store <2 x i32> ; CHECK: call void @llvm.lifetime.start @@ -33,7 +33,7 @@ for.end: ret void } -; CHECK-LABEL: testbitcast +; CHECK-LABEL: @testbitcast( ; CHECK: call void @llvm.lifetime.end ; CHECK: store <2 x i32> ; CHECK: call void @llvm.lifetime.start @@ -63,7 +63,7 @@ for.end: ret void } -; CHECK-LABEL: testloopvariant +; CHECK-LABEL: @testloopvariant( ; CHECK: call void @llvm.lifetime.end ; CHECK: store <2 x i32> ; CHECK: call void @llvm.lifetime.start |