bolt/deps/llvm-18.1.8/llvm/test/CodeGen/Generic/2007-04-27-InlineAsm-X-Dest.ll
2025-02-14 19:21:04 +01:00

8 lines
248 B
LLVM

; RUN: llc -no-integrated-as < %s
; Test that we can have an "X" output constraint.
define void @test(ptr %t) {
call void asm sideeffect "foo $0", "=*X,~{dirflag},~{fpsr},~{flags},~{memory}"( ptr elementtype( i16) %t )
ret void
}