Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / llvm / test / CodeGen / X86 / inline-asm-modifier-V.ll
blob25adc2e3b01a123a4513569f196ed5b790d5c106
1 ; RUN: llc < %s -mtriple=i686-- -no-integrated-as | FileCheck -check-prefix=X86 %s
2 ; RUN: llc < %s -mtriple=x86_64-- -no-integrated-as | FileCheck -check-prefix=X64 %s
4 ; If the target does not have 64-bit integer registers, emit 32-bit register
5 ; names.
7 ; X86: call __x86_indirect_thunk_e{{[abcd]}}x
8 ; X64: call __x86_indirect_thunk_r
10 define void @q_modifier(ptr %p) {
11 entry:
12   tail call void asm sideeffect "call __x86_indirect_thunk_${0:V}", "r,~{dirflag},~{fpsr},~{flags}"(ptr %p)
13   ret void