| Akira Hatanaka | 9afbb8c | 2014-03-28 23:28:07 +0000 | [diff] [blame] | 1 | ; RUN: llc < %s -march=x86 -no-integrated-as | FileCheck %s |
| 2 | |||||
| 3 | ; If the target does not have 64-bit integer registers, emit 32-bit register | ||||
| 4 | ; names. | ||||
| 5 | |||||
| 6 | ; CHECK: movq (%e{{[abcd]}}x, %ebx, 4) | ||||
| 7 | |||||
| 8 | define void @q_modifier(i32* %p) { | ||||
| 9 | entry: | ||||
| 10 | tail call void asm sideeffect "movq (${0:q}, %ebx, 4), %mm0", "r,~{dirflag},~{fpsr},~{flags}"(i32* %p) | ||||
| 11 | ret void | ||||
| 12 | } | ||||