blob: 449ea36519cc9cf763f14d0462d5d124e6c05561 [file] [log] [blame]
Chandler Carruth4177e6f2012-07-02 12:47:22 +00001; RUN: not llvm-as %s -o /dev/null |& grep "Only PHI nodes may reference their own value"
Tanya Lattner2393a242004-11-06 23:08:26 +00002
Chris Lattner1d2535c2002-04-18 20:30:58 +00003; Test that self referential instructions are not allowed
4
Chris Lattnerad23d432008-03-01 09:00:21 +00005define void @test() {
6 %A = add i32 %A, 0 ; <i32> [#uses=1]
Chris Lattner1d2535c2002-04-18 20:30:58 +00007 ret void
Chris Lattnerad23d432008-03-01 09:00:21 +00008}
9