aboutsummaryrefslogtreecommitdiff
path: root/test/Transforms/Reassociate/2002-05-15-AgressiveSubMove.ll
blob: 0a176be6e3b32ce9c5e62ff0e40b12246fa21c29 (plain)
1
2
3
4
5
6
7
8
; RUN: llvm-as < %s | 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!
}