1
0
mirror of https://github.com/c64scene-ar/llvm-6502.git synced 2025-03-01 16:31:13 +00:00

9 lines
227 B
LLVM
Raw Normal View History

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