aboutsummaryrefslogtreecommitdiff
path: root/unittests/ExecutionEngine/JIT/JITTest.cpp
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2009-07-11 13:56:14 +0000
committerDan Gohman <gohman@apple.com>2009-07-11 13:56:14 +0000
commitc6f40b6ffb6ba9cd2a911d44f5f1d9417d80fe11 (patch)
tree556419a074361331dc02f75898e8e3b5b8e7cb25 /unittests/ExecutionEngine/JIT/JITTest.cpp
parent7d696d80409aad20bb5da0fc4eccab941dd371d4 (diff)
Don't use a void return type with a function that returns a value.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@75364 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'unittests/ExecutionEngine/JIT/JITTest.cpp')
-rw-r--r--unittests/ExecutionEngine/JIT/JITTest.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/unittests/ExecutionEngine/JIT/JITTest.cpp b/unittests/ExecutionEngine/JIT/JITTest.cpp
index 8f29918a99..87f3498fac 100644
--- a/unittests/ExecutionEngine/JIT/JITTest.cpp
+++ b/unittests/ExecutionEngine/JIT/JITTest.cpp
@@ -30,7 +30,8 @@ namespace {
Function *makeReturnGlobal(std::string Name, GlobalVariable *G, Module *M) {
std::vector<const Type*> params;
- const FunctionType *FTy = FunctionType::get(Type::VoidTy, params, false);
+ const FunctionType *FTy = FunctionType::get(G->getType()->getElementType(),
+ params, false);
Function *F = Function::Create(FTy, GlobalValue::ExternalLinkage, Name, M);
BasicBlock *Entry = BasicBlock::Create("entry", F);
IRBuilder<> builder(Entry);