blob: 7560143207107f6f83aeb7af5f2efe4785670906 [file] [log] [blame]
; RUN: llvm-as < %s | opt -basicaa -load-vn -gcse -instcombine | llvm-dis | grep 'load int\* %A'
declare double* %useit(int*)
int %foo(uint %Amt) {
%A = malloc int, uint %Amt
%P = call double* %useit(int* %A)
%X = load int* %A
store double 0.0, double* %P
%Y = load int* %A
%Z = sub int %X, %Y
ret int %Z
}