repo.or.cz
/
llvm
/
stm8.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Silence -Wunused-variable in release builds.
[llvm/stm8.git]
/
test
/
Analysis
/
ScalarEvolution
/
unreachable-code.ll
blob
51d93981800a22d19f3285d48f7b281cb4350fb5
1
; RUN: opt < %s -analyze -scalar-evolution | FileCheck %s
2
3
; CHECK: %t = add i64 %t, 1
4
; CHECK: --> %t
5
6
define void @foo() {
7
entry:
8
ret void
9
10
dead:
11
%t = add i64 %t, 1
12
ret void
13
}