1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-28 06:22:51 +01:00
llvm-mirror/test/Regression/Transforms/Reassociate/2002-05-15-AgressiveSubMove.ll

12 lines
266 B
LLVM
Raw Normal View History

; RUN: if as < %s | opt -reassociate -instcombine -constprop -dce | dis | grep add
2002-05-15 19:22:01 +02:00
; RUN: then exit 1
; RUN: else exit 0
; RUN: fi
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!
}