[llvm] r186267 - Modify two Transforms tests to explicitly check for full function names in some cases, rather than just a common prefix. No functionality change.
Stephen Lin
stephenwlin at gmail.com
Sat Jul 13 18:38:20 PDT 2013
Author: stephenwlin
Date: Sat Jul 13 20:38:19 2013
New Revision: 186267
URL: http://llvm.org/viewvc/llvm-project?rev=186267&view=rev
Log:
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)
Modified:
llvm/trunk/test/Transforms/InstCombine/vec_shuffle.ll
llvm/trunk/test/Transforms/LoopUnroll/scevunroll.ll
Modified: llvm/trunk/test/Transforms/InstCombine/vec_shuffle.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Transforms/InstCombine/vec_shuffle.ll?rev=186267&r1=186266&r2=186267&view=diff
==============================================================================
--- llvm/trunk/test/Transforms/InstCombine/vec_shuffle.ll (original)
+++ llvm/trunk/test/Transforms/InstCombine/vec_shuffle.ll Sat Jul 13 20:38:19 2013
@@ -101,7 +101,7 @@ define <4 x i8> @test9a(<16 x i8> %tmp6)
; 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]
Modified: llvm/trunk/test/Transforms/LoopUnroll/scevunroll.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Transforms/LoopUnroll/scevunroll.ll?rev=186267&r1=186266&r2=186267&view=diff
==============================================================================
--- llvm/trunk/test/Transforms/LoopUnroll/scevunroll.ll (original)
+++ llvm/trunk/test/Transforms/LoopUnroll/scevunroll.ll Sat Jul 13 20:38:19 2013
@@ -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
More information about the llvm-commits
mailing list