Fix live variables issues:
[oota-llvm.git] / test / CodeGen / Generic / 2007-04-27-InlineAsm-X-Dest.ll
1 ; RUN: llvm-as < %s | llc
2 ; XFAIL: sparc-sun-solaris2
3 ; PR1557
4
5 ; Test that we can have an "X" output constraint.
6
7 define void @test(i16 * %t) {
8         call void asm sideeffect "foo $0", "=*X,~{dirflag},~{fpsr},~{flags},~{memory}"( i16* %t )
9         ret void
10 }