aboutsummaryrefslogtreecommitdiff
path: root/test/ExecutionEngine
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2007-02-01 21:58:46 +0000
committerReid Spencer <rspencer@reidspencer.com>2007-02-01 21:58:46 +0000
commit3ca56169e77543789230324dea1b5c50ee443dd4 (patch)
treef6ff6a0f1191d43784403bf573b073acb5d4585a /test/ExecutionEngine
parentc33f674ca3e3f9834833d7b4840157f2c92f4e4c (diff)
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
Diffstat (limited to 'test/ExecutionEngine')
-rw-r--r--test/ExecutionEngine/test-fp.ll1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/ExecutionEngine/test-fp.ll b/test/ExecutionEngine/test-fp.ll
index 8d8dae8def..1ee29b5421 100644
--- a/test/ExecutionEngine/test-fp.ll
+++ b/test/ExecutionEngine/test-fp.ll
@@ -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
}