repo.or.cz
/
llvm.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Add missing newline to debug statement.
[llvm.git]
/
test
/
Verifier
/
SelfReferential.ll
blob
70154b77a8233184a4bda6b3ee5774d42ad0635b
1
; RUN: not llvm-as %s -o /dev/null |& grep {Only PHI nodes may reference their own value}
2
3
; Test that self referential instructions are not allowed
4
5
define void @test() {
6
%A = add i32 %A, 0 ; <i32> [#uses=1]
7
ret void
8
}
9