Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2336)

Unified Diff: tests_lit/assembler/arm32/vec-sh-imm.ll

Issue 1886263004: Subzero. ARM32. Implements vector select. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Addresses comments. Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tests_lit/assembler/arm32/vcvt.u32.f32.ll ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests_lit/assembler/arm32/vec-sh-imm.ll
diff --git a/tests_lit/assembler/arm32/vec-sh-imm.ll b/tests_lit/assembler/arm32/vec-sh-imm.ll
index 0436824119fa7a674a2f8e18f1b60762735b141a..c2c5ebc1b6d258cff30b9f70dfd49375db13c681 100644
--- a/tests_lit/assembler/arm32/vec-sh-imm.ll
+++ b/tests_lit/assembler/arm32/vec-sh-imm.ll
@@ -34,8 +34,8 @@ define internal <4 x i32> @SextV4I1(<4 x i32> %a) {
; ASM-NEXT: vshr.s32 {{.*}}, #31
; DIS: 0: f2bf0550
; DIS-NEXT: 4: f2a10050
-; IASM-NOT: vshl.u32 {{.*}}, #31
-; IASM-NOT: vshr.s32 {{.*}}, #31
+; IASM-NOT: vshl
+; IASM-NOT: vshr
}
define internal <8 x i16> @SextV8I1(<8 x i16> %a) {
@@ -46,12 +46,12 @@ define internal <8 x i16> @SextV8I1(<8 x i16> %a) {
%trunc = trunc <8 x i16> %a to <8 x i1>
%sext = sext <8 x i1> %trunc to <8 x i16>
ret <8 x i16> %sext
-; ASM: vshl.u16 {{.*}}, #15
-; ASM-NEXT: vshr.s16 {{.*}}, #15
+; ASM: vshl.u16 {{.*}}, #15
+; ASM-NEXT: vshr.s16 {{.*}}, #15
; DIS: 10: f29f0550
; DIS-NEXT: 14: f2910050
-; IASM-NOT: vshl.u16 {{.*}}, #15
-; IASM-NOT: vshr.s16 {{.*}}, #15
+; IASM-NOT: vshl
+; IASM-NOT: vshr
}
define internal <16 x i8> @SextV16I1(<16 x i8> %a) {
@@ -62,10 +62,10 @@ define internal <16 x i8> @SextV16I1(<16 x i8> %a) {
%trunc = trunc <16 x i8> %a to <16 x i1>
%sext = sext <16 x i1> %trunc to <16 x i8>
ret <16 x i8> %sext
-; ASM: vshl.u8 {{.*}}, #7
-; ASM-NEXT: vshr.s8 {{.*}}, #7
+; ASM: vshl.u8 {{.*}}, #7
+; ASM-NEXT: vshr.s8 {{.*}}, #7
; DIS: 20: f28f0550
; DIS-NEXT: 24: f2890050
-; IASM-NOT: vshl.u8 {{.*}}, #7
-; IASM-NOT: vshr.s8 {{.*}}, #7
+; IASM-NOT: vshl
+; IASM-NOT: vshr
}
« no previous file with comments | « tests_lit/assembler/arm32/vcvt.u32.f32.ll ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698