| OLD | NEW |
| 1 ; Show that we can handle variable (i.e. stack) spills. | 1 ; Show that we can handle variable (i.e. stack) spills. |
| 2 | 2 |
| 3 ; REQUIRES: allow_dump | 3 ; REQUIRES: allow_dump |
| 4 | 4 |
| 5 ; Compile using standalone assembler. | 5 ; Compile using standalone assembler. |
| 6 ; RUN: %p2i --filetype=asm -i %s --target=arm32 --args -Om1 \ | 6 ; RUN: %p2i --filetype=asm -i %s --target=arm32 --args -Om1 \ |
| 7 ; RUN: | FileCheck %s --check-prefix=ASM | 7 ; RUN: | FileCheck %s --check-prefix=ASM |
| 8 | 8 |
| 9 ; Show bytes in assembled standalone code. | 9 ; Show bytes in assembled standalone code. |
| 10 ; RUN: %p2i --filetype=asm -i %s --target=arm32 --assemble --disassemble \ | 10 ; RUN: %p2i --filetype=asm -i %s --target=arm32 --assemble --disassemble \ |
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 77 ; IASM-NEXT: .byte 0xd0 | 77 ; IASM-NEXT: .byte 0xd0 |
| 78 ; IASM-NEXT: .byte 0x8d | 78 ; IASM-NEXT: .byte 0x8d |
| 79 ; IASM-NEXT: .byte 0xe2 | 79 ; IASM-NEXT: .byte 0xe2 |
| 80 | 80 |
| 81 ; ASM-NEXT: bx lr | 81 ; ASM-NEXT: bx lr |
| 82 ; DIS-NEXT: 1c: e12fff1e | 82 ; DIS-NEXT: 1c: e12fff1e |
| 83 ; IASM-NEXT: .byte 0x1e | 83 ; IASM-NEXT: .byte 0x1e |
| 84 ; IASM-NEXT: .byte 0xff | 84 ; IASM-NEXT: .byte 0xff |
| 85 ; IASM-NEXT: .byte 0x2f | 85 ; IASM-NEXT: .byte 0x2f |
| 86 ; IASM-NEXT: .byte 0xe1 | 86 ; IASM-NEXT: .byte 0xe1 |
| 87 | |
| OLD | NEW |