summaryrefslogtreecommitdiff
path: root/lib/ExecutionEngine
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2009-07-01 04:13:31 +0000
committerChris Lattner <sabre@nondot.org>2009-07-01 04:13:31 +0000
commit0fd38069cb6699ce21eb159f22d3f23c012c9e81 (patch)
treef66dcf7ae670ad83fafd93662fe76538a2203c35 /lib/ExecutionEngine
parent35c28eca627cd9dc2dd3ee3393074080103be456 (diff)
downloadllvm-0fd38069cb6699ce21eb159f22d3f23c012c9e81.tar.gz
llvm-0fd38069cb6699ce21eb159f22d3f23c012c9e81.tar.bz2
llvm-0fd38069cb6699ce21eb159f22d3f23c012c9e81.tar.xz
improve the APIs for creating struct and function types with no arguments/elements
to not have to create a temporary vector (in the API at least). Patch by Jay Foad! git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@74584 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/ExecutionEngine')
-rw-r--r--lib/ExecutionEngine/JIT/JIT.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ExecutionEngine/JIT/JIT.cpp b/lib/ExecutionEngine/JIT/JIT.cpp
index db5a306bad..1d8312f762 100644
--- a/lib/ExecutionEngine/JIT/JIT.cpp
+++ b/lib/ExecutionEngine/JIT/JIT.cpp
@@ -453,7 +453,7 @@ GenericValue JIT::runFunction(Function *F,
// arguments. Make this function and return.
// First, create the function.
- FunctionType *STy=FunctionType::get(RetTy, std::vector<const Type*>(), false);
+ FunctionType *STy=FunctionType::get(RetTy, false);
Function *Stub = Function::Create(STy, Function::InternalLinkage, "",
F->getParent());