1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-22 04:22:57 +02:00
llvm-mirror/test/Transforms/Reassociate/subtest.ll
2007-01-17 07:59:14 +00:00

11 lines
301 B
LLVM

; With sub reassociation, constant folding can eliminate the 12 and -12 constants.
;
; RUN: llvm-upgrade < %s | llvm-as | opt -reassociate -constprop -instcombine -die | llvm-dis | not grep 12
int "test"(int %A, int %B) {
%X = add int -12, %A
%Y = sub int %X, %B
%Z = add int %Y, 12
ret int %Z
}