repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Re-land [openmp] Fix warnings when building on Windows with latest MSVC or Clang...
[llvm-project.git]
/
llvm
/
test
/
Analysis
/
ScalarEvolution
/
unreachable-code.ll
blob
4850f86badfd59e32a457e8d0399946ce2154935
1
; RUN: opt < %s -disable-output "-passes=print<scalar-evolution>" 2>&1 | FileCheck %s
2
3
; CHECK: %t = add i64 %t, 1
4
; CHECK: --> poison
5
6
define void @foo() {
7
entry:
8
ret void
9
10
dead:
11
%t = add i64 %t, 1
12
ret void
13
}