diff options
author | Stephen Lin <stephenwlin@gmail.com> | 2013-07-14 01:38:19 +0000 |
---|---|---|
committer | Stephen Lin <stephenwlin@gmail.com> | 2013-07-14 01:38:19 +0000 |
commit | 82e539d037a33f968e4a5476d3d471e1112f8ab2 (patch) | |
tree | 1b972b765598d5da3f2bf3ede953d613d3dd317a | |
parent | 60808c76b4f3674a08fd468bcb5afb2cab77227a (diff) | |
download | external_llvm-82e539d037a33f968e4a5476d3d471e1112f8ab2.zip external_llvm-82e539d037a33f968e4a5476d3d471e1112f8ab2.tar.gz external_llvm-82e539d037a33f968e4a5476d3d471e1112f8ab2.tar.bz2 |
Modify two Transforms tests to explicitly check for full function names in some cases, rather than just a common prefix. No functionality change.
(This is to avoid confusing a scripted mass update of these tests to use CHECK-LABEL)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@186267 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/Transforms/InstCombine/vec_shuffle.ll | 2 | ||||
-rw-r--r-- | test/Transforms/LoopUnroll/scevunroll.ll | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/test/Transforms/InstCombine/vec_shuffle.ll b/test/Transforms/InstCombine/vec_shuffle.ll index 2adc1c9..8d14a6c 100644 --- a/test/Transforms/InstCombine/vec_shuffle.ll +++ b/test/Transforms/InstCombine/vec_shuffle.ll @@ -101,7 +101,7 @@ define <4 x i8> @test9a(<16 x i8> %tmp6) nounwind { ; Test fold of two shuffles where the first shuffle vectors inputs are a ; different length then the second. define <4 x i8> @test9b(<4 x i8> %tmp6, <4 x i8> %tmp7) nounwind { -; CHECK: @test9 +; CHECK: @test9b ; CHECK-NEXT: shufflevector ; CHECK-NEXT: ret %tmp1 = shufflevector <4 x i8> %tmp6, <4 x i8> %tmp7, <8 x i32> <i32 0, i32 1, i32 4, i32 5, i32 4, i32 5, i32 2, i32 3> ; <<4 x i8>> [#uses=1] diff --git a/test/Transforms/LoopUnroll/scevunroll.ll b/test/Transforms/LoopUnroll/scevunroll.ll index 308a036..d2645a7 100644 --- a/test/Transforms/LoopUnroll/scevunroll.ll +++ b/test/Transforms/LoopUnroll/scevunroll.ll @@ -103,7 +103,7 @@ exit2: ; LoopUnroll utility uses this assumption to optimize the latch ; block's branch. ; -; CHECK: @multiExit +; CHECK: @multiExitIncomplete ; CHECK: l3: ; CHECK-NOT: br ; CHECK: br i1 %cmp3, label %l1, label %exit3 |