1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-22 20:43:44 +02:00
llvm-mirror/test/Analysis/Andersens/modreftest.ll
2009-09-08 22:41:33 +00:00

16 lines
288 B
LLVM

; RUN: opt %s -anders-aa -gvn -instcombine -S \
; RUN: | grep {ret i1 true}
@G = internal global i32* null
declare i32 *@ext()
define i1 @bar() {
%V1 = load i32** @G
%X2 = call i32 *@ext()
%V2 = load i32** @G
store i32* %X2, i32** @G
%C = icmp eq i32* %V1, %V2
ret i1 %C
}