1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-21 20:12:56 +02:00
llvm-mirror/test/CodeGen/Generic/2007-04-27-InlineAsm-X-Dest.ll
Anton Korobeynikov 3f74df506c This does not fail anymore
llvm-svn: 57360
2008-10-10 20:28:32 +00:00

9 lines
225 B
LLVM

; RUN: llvm-as < %s | llc
; 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 )
ret void
}