mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-10-30 23:42:52 +01:00
074200ea75
llvm-svn: 15023
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
|
|
}
|