blob: 70154b77a8233184a4bda6b3ee5774d42ad0635b [file] [log] [blame]
Dan Gohman2d65d352009-08-25 15:38:29 +00001; RUN: not llvm-as %s -o /dev/null |& grep {Only PHI nodes may reference their own value}
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002
3; Test that self referential instructions are not allowed
4
Chris Lattner0f0aa8f2008-03-01 09:00:21 +00005define void @test() {
6 %A = add i32 %A, 0 ; <i32> [#uses=1]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007 ret void
Chris Lattner0f0aa8f2008-03-01 09:00:21 +00008}
9