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

9 lines
228 B
LLVM
Raw Normal View History

; RUN: llvm-as < %s | opt -reassociate -instcombine -constprop -dce | llvm-dis | not grep add
2002-05-15 19:22:01 +02:00
int %test(int %A) {
2002-05-15 19:22:01 +02:00
%X = add int %A, 1
%Y = add int %A, 1
%r = sub int %X, %Y
ret int %r ; Should be equal to 0!
}