blob: 7f0166a158d54f2bee6937ba7c4774f889f3a02f [file] [log] [blame]
Eli Benderskyc3d5c1c2013-04-08 18:33:51 +00001; RUN: not llvm-as %s -o /dev/null 2>&1 | FileCheck %s
2; CHECK: Only PHI nodes may reference their own value
Tanya Lattner2393a242004-11-06 23:08:26 +00003
Chris Lattner1d2535c2002-04-18 20:30:58 +00004; Test that self referential instructions are not allowed
5
Chris Lattnerad23d432008-03-01 09:00:21 +00006define void @test() {
7 %A = add i32 %A, 0 ; <i32> [#uses=1]
Chris Lattner1d2535c2002-04-18 20:30:58 +00008 ret void
Chris Lattnerad23d432008-03-01 09:00:21 +00009}
10