mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 00:12:50 +01:00
142428ce64
llvm-svn: 81293
9 lines
215 B
LLVM
9 lines
215 B
LLVM
; RUN: llc < %s
|
|
|
|
; 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
|
|
}
|