blob: 0022d63fb595612b6fd19eb1c6017d3b3b2e345a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
; RUN: llvm-as < %s | opt -instcombine | llvm-dis | not grep getelementptr
bool %test1(short* %P, int %I, int %J) {
%X = getelementptr short* %P, int %I
%Y = getelementptr short* %P, int %J
%C = setlt short* %X, %Y
ret bool %C
}
bool %test2(short* %P, int %I) {
%X = getelementptr short* %P, int %I
%C = setlt short* %X, %P
ret bool %C
}
|