repo.or.cz
/
llvm
/
msp430.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge branch 'master' into msp430
[llvm/msp430.git]
/
test
/
Verifier
/
SelfReferential.ll
blob
c013bfb6a188afab7905ed5b84841546f34c6809
1
; RUN: not llvm-as -f %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