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