mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-17 18:10:31 +00:00
9 lines
227 B
LLVM
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
|
||
|
}
|