mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-02 00:42:52 +01:00
3f74df506c
llvm-svn: 57360
9 lines
225 B
LLVM
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
|
|
}
|