mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 15:11:24 +00:00
4ecbca558f
They are lots of trouble, and they don't matter. This fixes PR6559. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@98103 91177308-0d34-0410-b5e6-96231b3b80d8
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
|
|
}
|