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

Unified Diff: tests_lit/assembler/arm32/mvn.ll

Issue 1486263002: More coverage of load/stores in ARM integrated assembler. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Format and fix nits. Created 5 years 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') | « tests_lit/assembler/arm32/ldr-str-more.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/mvn.ll
diff --git a/tests_lit/assembler/arm32/mvn.ll b/tests_lit/assembler/arm32/mvn.ll
index 67a6cf280e0393473f3f4e281eff77795bd7705c..c4f6a79733cccc8cb3fb952829d19f0e7bef81ec 100644
--- a/tests_lit/assembler/arm32/mvn.ll
+++ b/tests_lit/assembler/arm32/mvn.ll
@@ -69,7 +69,10 @@ entry:
; ASM-NEXT: strb r0, [sp, #12]
; ASM-NEXT: # [sp, #12] = def.pseudo
; DIS-NEXT: 14: e5cd000c
-; IASM-NEXT: strb r0, [sp, #12]
+; IASM-NEXT: .byte 0xc
+; IASM-NEXT: .byte 0x0
+; IASM-NEXT: .byte 0xcd
+; IASM-NEXT: .byte 0xe5
%a.arg_trunc = trunc i32 %a to i1
@@ -90,13 +93,19 @@ entry:
; ASM-NEXT: strb r0, [sp, #8]
; ASM-NEXT: # [sp, #8] = def.pseudo
; DIS-NEXT: 20: e5cd0008
-; IASM-NEXT: strb r0, [sp, #8]
+; IASM-NEXT: .byte 0x8
+; IASM-NEXT: .byte 0x0
+; IASM-NEXT: .byte 0xcd
+; IASM-NEXT: .byte 0xe5
%conv = zext i1 %a.arg_trunc to i32
; ASM-NEXT: ldrb r0, [sp, #8]
; DIS-NEXT: 24: e5dd0008
-; IASM-NEXT: ldrb r0, [sp, #8]
+; IASM-NEXT: .byte 0x8
+; IASM-NEXT: .byte 0x0
+; IASM-NEXT: .byte 0xdd
+; IASM-NEXT: .byte 0xe5
; ASM-NEXT: str r0, [sp, #4]
; ASM-NEXT: # [sp, #4] = def.pseudo
@@ -117,7 +126,10 @@ entry:
; ASM-NEXT: ldrb r1, [sp, #12]
; DIS-NEXT: 30: e5dd100c
-; IASM-NEXT: ldrb r1, [sp, #12]
+; IASM-NEXT: .byte 0xc
+; IASM-NEXT: .byte 0x10
+; IASM-NEXT: .byte 0xdd
+; IASM-NEXT: .byte 0xe5
; ASM-NEXT: tst r1, #1
; DIS-NEXT: 34: e3110001
« src/IceAssemblerARM32.cpp ('K') | « tests_lit/assembler/arm32/ldr-str-more.ll ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698