mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 08:23:21 +01:00
a722142044
They are lots of trouble, and they don't matter. This fixes PR6559. llvm-svn: 98103
14 lines
185 B
LLVM
14 lines
185 B
LLVM
; 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
|
|
}
|