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

Unified Diff: tests_lit/assembler/arm32/add-vec.ll

Issue 1652173002: Implements the vector add instructions in the integrated ARM assembler. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Fix nits. Created 4 years, 11 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
« src/IceAssemblerARM32.cpp ('K') | « src/IceInstARM32.cpp ('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/add-vec.ll
diff --git a/tests_lit/assembler/arm32/add-vec.ll b/tests_lit/assembler/arm32/add-vec.ll
index c434190278c98312347f5f40d55eff30d9d20a38..ca64b46faeb053e0688f488d1fe61ccb2b04f639 100644
--- a/tests_lit/assembler/arm32/add-vec.ll
+++ b/tests_lit/assembler/arm32/add-vec.ll
@@ -34,7 +34,7 @@ entry:
; ASM: vadd.f32 q10, q10, q11
; DIS: 8: f2444de6
-; IASM: vadd.f32
+; IASM-NOT: vadd.f32
ret <4 x float> %res
}
@@ -49,7 +49,7 @@ entry:
; ASM: vadd.i32 q10, q10, q11
; DIS: 28: f26448e6
-; IASM: vadd.i32
+; IASM-NOT: vadd.i32
ret <4 x i32> %res
}
@@ -64,7 +64,7 @@ entry:
; ASM: vadd.i16 q10, q10, q11
; DIS: 48: f25448e6
-; IASM: vadd.i16
+; IASM-NOT: vadd.i16
ret <8 x i16> %res
}
@@ -79,7 +79,7 @@ entry:
; ASM: vadd.i8 q10, q10, q11
; DIS: 68: f24448e6
-; IASM: vadd.i8
+; IASM-NOT: vadd.i8
ret <16 x i8> %res
}
« src/IceAssemblerARM32.cpp ('K') | « src/IceInstARM32.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698