aboutsummaryrefslogtreecommitdiff
path: root/llvm/test/CodeGen/X86/asm-modifier-32.ll
blob: 79cd2cb7af49a1e9be3049503b2074b44e47a987 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
; RUN: llc < %s -mtriple=i686-- -no-integrated-as | 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(ptr %p) {
entry:
  tail call void asm sideeffect "movq (${0:q}, %ebx, 4), %mm0", "r,~{dirflag},~{fpsr},~{flags}"(ptr %p)
  ret void
}