blob: 45a4de2853930c588a4c2e489ead66765b0282d1 [file] [log] [blame]
Chris Lattner5bee46d2007-04-28 06:05:59 +00001; RUN: llvm-as < %s | llc
2
3; Test that we can have an "X" output constraint.
4
5define void @test(i16 * %t) {
6 call void asm sideeffect "fwait", "=*X,~{dirflag},~{fpsr},~{flags},~{memory}"( i16* %t )
7 ret void
8}