aboutsummaryrefslogtreecommitdiffstats
path: root/test/Analysis/ScalarEvolution/unreachable-code.ll
blob: 51d93981800a22d19f3285d48f7b281cb4350fb5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
; RUN: opt < %s -analyze -scalar-evolution | FileCheck %s

; CHECK: %t = add i64 %t, 1
; CHECK: -->  %t

define void @foo() {
entry:
  ret void

dead:
  %t = add i64 %t, 1
  ret void
}