[llvm] r253702 - Fix test case label check
Bill Seurer via llvm-commits
llvm-commits at lists.llvm.org
Fri Nov 20 12:24:50 PST 2015
Author: seurer
Date: Fri Nov 20 14:24:49 2015
New Revision: 253702
URL: http://llvm.org/viewvc/llvm-project?rev=253702&view=rev
Log:
Fix test case label check
Several (but not all) of the labels that are checked for in this test case
are checked as strings instead of labels. This can cause an apparent test
case failure if they are tested in an appropriately named directory.
For example, one of them that fails:
define zeroext i32 @test2(i32 %A.u, i32 %B.u) {
; A8: test2
; A8: uxtab r0, r0, r1
Output that causes it to fail:
. . .
.file "/home/seurer/llvm/llvm-test2/test/CodeGen/Thumb2/thumb2-uxt_rot.ll"
. . .
.globl test2
.align 1
.type test2,%function
.code 16 @ @test2
.thumb_func
test2:
.fnstart
The "A8: test2" matches on the directory name instead of the label.
Modified:
llvm/trunk/test/CodeGen/Thumb2/thumb2-uxt_rot.ll
Modified: llvm/trunk/test/CodeGen/Thumb2/thumb2-uxt_rot.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/Thumb2/thumb2-uxt_rot.ll?rev=253702&r1=253701&r2=253702&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/Thumb2/thumb2-uxt_rot.ll (original)
+++ llvm/trunk/test/CodeGen/Thumb2/thumb2-uxt_rot.ll Fri Nov 20 14:24:49 2015
@@ -3,17 +3,17 @@
; rdar://11318438
define zeroext i8 @test1(i32 %A.u) {
-; A8: test1
+; A8-LABEL: test1:
; A8: uxtb r0, r0
%B.u = trunc i32 %A.u to i8
ret i8 %B.u
}
define zeroext i32 @test2(i32 %A.u, i32 %B.u) {
-; A8: test2
+; A8-LABEL: test2:
; A8: uxtab r0, r0, r1
-; M3: test2
+; M3-LABEL: test2:
; M3: uxtb r1, r1
; M3-NOT: uxtab
; M3: add r0, r1
@@ -24,7 +24,7 @@ define zeroext i32 @test2(i32 %A.u, i32
}
define zeroext i32 @test3(i32 %A.u) {
-; A8-LABEL: test3
+; A8-LABEL: test3:
; A8: ubfx r0, r0, #8, #16
%B.u = lshr i32 %A.u, 8
%C.u = shl i32 %A.u, 24
More information about the llvm-commits
mailing list