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