mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-05 18:49:06 +00:00
be72114460
llvm-svn: 48530
10 lines
255 B
LLVM
10 lines
255 B
LLVM
; RUN: llvm-as < %s | opt -reassociate -instcombine -constprop -dce | llvm-dis | not grep add
|
|
|
|
define i32 @test(i32 %A) {
|
|
%X = add i32 %A, 1 ; <i32> [#uses=1]
|
|
%Y = add i32 %A, 1 ; <i32> [#uses=1]
|
|
%r = sub i32 %X, %Y ; <i32> [#uses=1]
|
|
ret i32 %r
|
|
}
|
|
|