1
0
mirror of https://github.com/c64scene-ar/llvm-6502.git synced 2024-12-19 17:33:29 +00:00
llvm-6502/test/Transforms/InstCombine/GEPIdxCanon.ll
2004-07-20 01:47:49 +00:00

9 lines
227 B
LLVM

; 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
}