Files
llvm-6502/test/Analysis/BasicAA/2005-03-09-BrokenBasicAA.ll
Owen Anderson 7c856c09cd Remove GCSE and LoadVN from the testsuite.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@54832 91177308-0d34-0410-b5e6-96231b3b80d8
2008-08-16 00:00:54 +00:00

16 lines
322 B
LLVM

; RUN: llvm-as < %s | opt -basicaa -gvn -instcombine |\
; RUN: llvm-dis | grep {load i32\\* %A}
declare double* @useit(i32*)
define i32 @foo(i32 %Amt) {
%A = malloc i32, i32 %Amt
%P = call double* @useit(i32* %A)
%X = load i32* %A
store double 0.0, double* %P
%Y = load i32* %A
%Z = sub i32 %X, %Y
ret i32 %Z
}