aboutsummaryrefslogtreecommitdiffstats
path: root/test/Transforms/InstCombine/GEPIdxCanon.ll
blob: afaabc3e2f05baac5d00e1c531220074ca902a29 (plain)
1
2
3
4
5
6
7
8
; RUN: llvm-upgrade < %s | llvm-as | opt -instcombine -gcse -instcombine | 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
}