| OLD | NEW |
| 1 ; Show that we know how to translate mul. | 1 ; Show that we know how to translate mul. |
| 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 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 67 ; IASM-NEXT: .byte 0x90 | 67 ; IASM-NEXT: .byte 0x90 |
| 68 ; IASM-NEXT: .byte 0x3 | 68 ; IASM-NEXT: .byte 0x3 |
| 69 ; IASM-NEXT: .byte 0x3 | 69 ; IASM-NEXT: .byte 0x3 |
| 70 ; IASM-NEXT: .byte 0xe0 | 70 ; IASM-NEXT: .byte 0xe0 |
| 71 ; IASM-NEXT: mla r1, r2, r1, r3 | 71 ; IASM-NEXT: mla r1, r2, r1, r3 |
| 72 ; IASM-NEXT: umull r0, r2, r0, r2 | 72 ; IASM-NEXT: umull r0, r2, r0, r2 |
| 73 ; IASM-NEXT: .byte 0x1 | 73 ; IASM-NEXT: .byte 0x1 |
| 74 ; IASM-NEXT: .byte 0x20 | 74 ; IASM-NEXT: .byte 0x20 |
| 75 ; IASM-NEXT: .byte 0x82 | 75 ; IASM-NEXT: .byte 0x82 |
| 76 ; IASM-NEXT: .byte 0xe0 | 76 ; IASM-NEXT: .byte 0xe0 |
| 77 ; IASM-NEXT: mov r1, r2 | 77 |
| 78 ; IASM-NEXT: .byte 0x2 |
| 79 ; IASM-NEXT: .byte 0x10 |
| 80 ; IASM-NEXT: .byte 0xa0 |
| 81 ; IASM-NEXT: .byte 0xe1 |
| 82 |
| 78 ; IASM-NEXT: .byte 0x1e | 83 ; IASM-NEXT: .byte 0x1e |
| 79 ; IASM-NEXT: .byte 0xff | 84 ; IASM-NEXT: .byte 0xff |
| 80 ; IASM-NEXT: .byte 0x2f | 85 ; IASM-NEXT: .byte 0x2f |
| 81 ; IASM-NEXT: .byte 0xe1 | 86 ; IASM-NEXT: .byte 0xe1 |
| OLD | NEW |