llvm-6502/test/Analysis/Andersens/modreftest.ll
Matthijs Kooijman da8bdfa92b Remove trailing whitespace after line continuations in test cases to them work.
This fixes two test cases that were not being run properly before.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@52179 91177308-0d34-0410-b5e6-96231b3b80d8
2008-06-10 15:07:07 +00:00

16 lines
318 B
LLVM

; RUN: llvm-as < %s | opt -anders-aa -load-vn -gcse -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
}