[llvm] r188087 - CHECK-LABEL-ify tests
Stephen Lin
stephenwlin at gmail.com
Fri Aug 9 10:50:16 PDT 2013
Author: stephenwlin
Date: Fri Aug 9 12:50:15 2013
New Revision: 188087
URL: http://llvm.org/viewvc/llvm-project?rev=188087&view=rev
Log:
CHECK-LABEL-ify tests
Modified:
llvm/trunk/test/CodeGen/AArch64/neon-aba-abd.ll
llvm/trunk/test/CodeGen/X86/avx512-insert-extract.ll
llvm/trunk/test/CodeGen/X86/avx512-vbroadcast.ll
Modified: llvm/trunk/test/CodeGen/AArch64/neon-aba-abd.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/AArch64/neon-aba-abd.ll?rev=188087&r1=188086&r2=188087&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/AArch64/neon-aba-abd.ll (original)
+++ llvm/trunk/test/CodeGen/AArch64/neon-aba-abd.ll Fri Aug 9 12:50:15 2013
@@ -223,4 +223,4 @@ define <2 x double> @test_fabd_v2f64(<2
%abd = call <2 x double> @llvm.arm.neon.vabds.v2f64(<2 x double> %lhs, <2 x double> %rhs)
; CHECK: fabd v0.2d, v0.2d, v1.2d
ret <2 x double> %abd
-}
\ No newline at end of file
+}
Modified: llvm/trunk/test/CodeGen/X86/avx512-insert-extract.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/X86/avx512-insert-extract.ll?rev=188087&r1=188086&r2=188087&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/X86/avx512-insert-extract.ll (original)
+++ llvm/trunk/test/CodeGen/X86/avx512-insert-extract.ll Fri Aug 9 12:50:15 2013
@@ -1,6 +1,6 @@
; RUN: llc < %s -march=x86-64 -mtriple=x86_64-apple-darwin -mcpu=knl | FileCheck %s
-;CHECK: test1
+;CHECK-LABEL: test1:
;CHECK: vinsertps
;CHECK: vinsertf32x4
;CHECK: ret
@@ -11,7 +11,7 @@ define <16 x float> @test1(<16 x float>
ret <16 x float> %rrr3
}
-;CHECK: test2
+;CHECK-LABEL: test2:
;CHECK: vinsertf32x4
;CHECK: vextractf32x4
;CHECK: vinsertf32x4
@@ -23,7 +23,7 @@ define <8 x double> @test2(<8 x double>
ret <8 x double> %rrr3
}
-;CHECK: test3
+;CHECK-LABEL: test3:
;CHECK: vextractf32x4
;CHECK: vinsertf32x4
;CHECK: ret
@@ -33,7 +33,7 @@ define <16 x float> @test3(<16 x float>
ret <16 x float> %rrr2
}
-;CHECK: test4
+;CHECK-LABEL: test4:
;CHECK: vextracti32x4
;CHECK: vinserti32x4
;CHECK: ret
@@ -43,7 +43,7 @@ define <8 x i64> @test4(<8 x i64> %x) no
ret <8 x i64> %rrr2
}
-;CHECK: test5
+;CHECK-LABEL: test5:
;CHECK: vextractpsz
;CHECK: ret
define i32 @test5(<4 x float> %x) nounwind {
@@ -52,7 +52,7 @@ define i32 @test5(<4 x float> %x) nounwi
ret i32 %ei
}
-;CHECK: test6
+;CHECK-LABEL: test6:
;CHECK: vextractpsz {{.*}}, (%rdi)
;CHECK: ret
define void @test6(<4 x float> %x, float* %out) nounwind {
Modified: llvm/trunk/test/CodeGen/X86/avx512-vbroadcast.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/X86/avx512-vbroadcast.ll?rev=188087&r1=188086&r2=188087&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/X86/avx512-vbroadcast.ll (original)
+++ llvm/trunk/test/CodeGen/X86/avx512-vbroadcast.ll Fri Aug 9 12:50:15 2013
@@ -1,6 +1,6 @@
; RUN: llc < %s -mtriple=x86_64-apple-darwin -mcpu=knl | FileCheck %s
-;CHECK: _inreg16xi32
+;CHECK-LABEL: _inreg16xi32:
;CHECK: vpbroadcastd {{.*}}, %zmm
;CHECK: ret
define <16 x i32> @_inreg16xi32(i32 %a) {
@@ -9,7 +9,7 @@ define <16 x i32> @_inreg16xi32(i32 %a
ret <16 x i32> %c
}
-;CHECK: _inreg8xi64
+;CHECK-LABEL: _inreg8xi64:
;CHECK: vpbroadcastq {{.*}}, %zmm
;CHECK: ret
define <8 x i64> @_inreg8xi64(i64 %a) {
@@ -18,7 +18,7 @@ define <8 x i64> @_inreg8xi64(i64 %a)
ret <8 x i64> %c
}
-;CHECK: _inreg16xfloat
+;CHECK-LABEL: _inreg16xfloat:
;CHECK: vbroadcastssz {{.*}}, %zmm
;CHECK: ret
define <16 x float> @_inreg16xfloat(float %a) {
@@ -27,7 +27,7 @@ define <16 x float> @_inreg16xfloat(fl
ret <16 x float> %c
}
-;CHECK: _inreg8xdouble
+;CHECK-LABEL: _inreg8xdouble:
;CHECK: vbroadcastsdz {{.*}}, %zmm
;CHECK: ret
define <8 x double> @_inreg8xdouble(double %a) {
More information about the llvm-commits
mailing list