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