mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-02 00:42:52 +01:00
7f5ef2d7a5
llvm-svn: 32115
9 lines
243 B
LLVM
9 lines
243 B
LLVM
; RUN: llvm-upgrade < %s | llvm-as | opt -reassociate -instcombine -constprop -dce | llvm-dis | not grep add
|
|
|
|
int %test(int %A) {
|
|
%X = add int %A, 1
|
|
%Y = add int %A, 1
|
|
%r = sub int %X, %Y
|
|
ret int %r ; Should be equal to 0!
|
|
}
|