mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 03:33:20 +01:00
1b070ae252
llvm-svn: 39975
11 lines
262 B
LLVM
11 lines
262 B
LLVM
; RUN: llvm-as < %s | llc
|
|
; XFAIL: sparc-sun-solaris2
|
|
; PR1557
|
|
|
|
; 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
|
|
}
|