1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-25 14:02:52 +02:00
llvm-mirror/test/CodeGen/Generic/2007-04-27-InlineAsm-X-Dest.ll

9 lines
215 B
LLVM
Raw Normal View History

; RUN: llc < %s
2007-04-28 08:05:59 +02:00
; Test that we can have an "X" output constraint.
define void @test(i16 * %t) {
call void asm sideeffect "foo $0", "=*X,~{dirflag},~{fpsr},~{flags},~{memory}"( i16* %t )
2007-04-28 08:05:59 +02:00
ret void
}