mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-13 21:05:16 +00:00
7c856c09cd
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@54832 91177308-0d34-0410-b5e6-96231b3b80d8
16 lines
308 B
LLVM
16 lines
308 B
LLVM
; RUN: llvm-as < %s | opt -anders-aa -gvn -instcombine | llvm-dis \
|
|
; 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
|
|
}
|