mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 16:33:37 +01:00
4572ce85b0
llvm-svn: 33296
13 lines
359 B
LLVM
13 lines
359 B
LLVM
; This is a bug in the VMcode library, not instcombine, it's just convenient
|
|
; to expose it here.
|
|
|
|
; RUN: llvm-upgrade < %s | llvm-as | opt -instcombine -disable-output
|
|
|
|
%A = global int 1
|
|
%B = global int 2
|
|
|
|
bool %test() {
|
|
%C = setlt int* getelementptr (int* %A, long 1), getelementptr (int* %B, long 2) ; Will get promoted to constantexpr
|
|
ret bool %C
|
|
}
|