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

Side by Side Diff: tests_lit/assembler/arm32/ret.ll

Issue 1397933002: Start incorporating the ARM integrated assembler. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Clean up code. Created 5 years, 2 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 unified diff | Download patch
OLDNEW
(Empty)
1 ; Shows that the ARM integrated assembler can translate a trivial,
2 ; bundle-aligned function.
3
4 ; RUN: %p2i --filetype=asm -i %s --target=arm32 \
5 ; RUN: | FileCheck %s --check-prefix=ASM
6 ; RUN: %p2i --filetype=iasm -i %s --target=arm32 \
7 ; RUN: | FileCheck %s --check-prefix=IASM
8
9 define internal void @f() {
10 ret void
11 }
12
13 ; ASM: f:
Jim Stichnoth 2015/10/08 23:50:41 Can this be ASM-LABEL ? (same with IASM-LABEL belo
Karl 2015/10/09 19:08:18 Done.
14 ; ASM-NEXT: .Lf$__0:
15 ; ASM-NEXT: bx lr
16
17 ; IASM: f:
18 ; IASM-NEXT: .byte 0x1e
19 ; IASM-NEXT: .byte 0xff
20 ; IASM-NEXT: .byte 0x2f
21 ; IASM-NEXT: .byte 0xe1
22
23 ; IASM-NEXT: .byte 0x70
24 ; IASM-NEXT: .byte 0x0
25 ; IASM-NEXT: .byte 0x20
26 ; IASM-NEXT: .byte 0xe1
27
28 ; IASM-NEXT: .byte 0x70
29 ; IASM-NEXT: .byte 0x0
30 ; IASM-NEXT: .byte 0x20
31 ; IASM-NEXT: .byte 0xe1
32
33 ; IASM-NEXT: .byte 0x70
34 ; IASM-NEXT: .byte 0x0
35 ; IASM-NEXT: .byte 0x20
36 ; IASM-NEXT: .byte 0xe1
OLDNEW
« src/IceTargetLoweringARM32.cpp ('K') | « src/IceTargetLoweringMIPS32.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698