mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 16:33:37 +01:00
c072619922
llvm-svn: 47793
13 lines
350 B
LLVM
13 lines
350 B
LLVM
; RUN: llvm-as < %s | opt -instcombine | llvm-dis | grep false
|
|
;
|
|
; This actually looks like a constant propagation bug
|
|
|
|
%X = type { [10 x i32], float }
|
|
|
|
define i1 @test() {
|
|
%A = getelementptr %X* null, i64 0, i32 0, i64 0 ; <i32*> [#uses=1]
|
|
%B = icmp ne i32* %A, null ; <i1> [#uses=1]
|
|
ret i1 %B
|
|
}
|
|
|