mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 16:33:37 +01:00
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
|
||
|
}
|