Add missing newline to debug statement.
[llvm.git] / test / Verifier / SelfReferential.ll
blob70154b77a8233184a4bda6b3ee5774d42ad0635b
1 ; RUN: not llvm-as %s -o /dev/null |& grep {Only PHI nodes may reference their own value}
3 ; Test that self referential instructions are not allowed
5 define void @test() {
6         %A = add i32 %A, 0              ; <i32> [#uses=1]
7         ret void