summaryrefslogtreecommitdiff
path: root/test/CodeGen/X86/inline-asm-modifier-q.ll
blob: d20f06d29054ea50d7f44de6f5c6b81420994d5b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
; RUN: llc < %s -march=x86  | FileCheck %s

; If the target does not have 64-bit integer registers, emit 32-bit register
; names.

; CHECK: movq (%e{{[abcd]}}x, %ebx, 4)

define void @q_modifier(i32* %p) {
entry:
  tail call void asm sideeffect "movq (${0:q}, %ebx, 4), %mm0", "r,~{dirflag},~{fpsr},~{flags}"(i32* %p)
  ret void
}