mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-03 14:08:57 +00:00
9ce94d7df4
intended. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@210685 91177308-0d34-0410-b5e6-96231b3b80d8
11 lines
195 B
LLVM
11 lines
195 B
LLVM
; RUN: opt < %s -reassociate -S | FileCheck %s
|
|
|
|
define i32 @test1(i32 %A) {
|
|
; CHECK-LABEL: test1
|
|
; CHECK: ret i32 0
|
|
%X = add i32 %A, 1
|
|
%Y = add i32 %A, 1
|
|
%r = sub i32 %X, %Y
|
|
ret i32 %r
|
|
}
|