Make sure the value passed to test function is initialized.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33764 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Reid Spencer 2007-02-01 21:58:46 +00:00
parent c33f674ca3
commit 3ca56169e7

View File

@ -18,6 +18,7 @@ double %test(double* %DP, double %Arg) {
int %main() {
%X = alloca double
store double 0.0, double* %X
call double %test(double* %X, double 2.0)
ret int 0
}