OLD | NEW |
1 ; Test the UXTB and UXTH instructions. | 1 ; Test the UXTB and UXTH instructions. |
2 | 2 |
3 ; NOTE: We use -O2 to get rid of memory stores. | 3 ; NOTE: We use -O2 to get rid of memory stores. |
4 | 4 |
5 ; REQUIRES: allow_dump | 5 ; REQUIRES: allow_dump |
6 | 6 |
7 ; Compile using standalone assembler. | 7 ; Compile using standalone assembler. |
8 ; RUN: %p2i --filetype=asm -i %s --target=arm32 --args -O2 \ | 8 ; RUN: %p2i --filetype=asm -i %s --target=arm32 --args -O2 \ |
9 ; RUN: | FileCheck %s --check-prefix=ASM | 9 ; RUN: | FileCheck %s --check-prefix=ASM |
10 | 10 |
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
80 | 80 |
81 | 81 |
82 ; ASM-NEXT: bx lr | 82 ; ASM-NEXT: bx lr |
83 ; DIS-NEXT: 14: e12fff1e | 83 ; DIS-NEXT: 14: e12fff1e |
84 ; IASM-NEXT: .byte 0x1e | 84 ; IASM-NEXT: .byte 0x1e |
85 ; IASM-NEXT: .byte 0xff | 85 ; IASM-NEXT: .byte 0xff |
86 ; IASM-NEXT: .byte 0x2f | 86 ; IASM-NEXT: .byte 0x2f |
87 ; IASM-NEXT: .byte 0xe1 | 87 ; IASM-NEXT: .byte 0xe1 |
88 | 88 |
89 } | 89 } |
90 | |
OLD | NEW |