blob: af522dc4c58d1f6e4238c4c0a0538e3e446f46a7 [file] [log] [blame]
Dan Gohmanfce288f2009-09-09 00:09:15 +00001; RUN: llc < %s
Chris Lattner5bee46d2007-04-28 06:05:59 +00002
3; Test that we can have an "X" output constraint.
4
5define void @test(i16 * %t) {
Chris Lattner15c92862007-04-28 06:07:55 +00006 call void asm sideeffect "foo $0", "=*X,~{dirflag},~{fpsr},~{flags},~{memory}"( i16* %t )
Chris Lattner5bee46d2007-04-28 06:05:59 +00007 ret void
8}