llvm-6502/test/Transforms/Reassociate/2002-05-15-AgressiveSubMove.ll
2003-06-28 23:23:34 +00:00

9 lines
218 B
LLVM

; RUN: as < %s | opt -reassociate -instcombine -constprop -dce | 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!
}