blob: 0ea13a2ad2e84b4e7bad4b16667a1ba6d3dbc2eb [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001; RUN: llvm-as < %s | llc
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002
3; Test that we can have an "X" output constraint.
4
5define void @test(i16 * %t) {
6 call void asm sideeffect "foo $0", "=*X,~{dirflag},~{fpsr},~{flags},~{memory}"( i16* %t )
7 ret void
8}