aboutsummaryrefslogtreecommitdiffstats
path: root/test/Transforms/InstCombine/GEPIdxCanon.ll
blob: bf0ab798414ea0950114ceffcf6c6cfc4ff16063 (plain)
1
2
3
4
5
6
7
8
9
; RUN: llvm-upgrade < %s | llvm-as | opt -instcombine -gcse -instcombine | \
; RUN:    llvm-dis | not grep getelementptr

bool %test(int* %A) {
	%B = getelementptr int* %A, int 1
	%C = getelementptr int* %A, uint 1
	%V = seteq int* %B, %C
	ret bool %V
}