diff options
author | Chris Lattner <sabre@nondot.org> | 2009-07-01 04:13:31 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-07-01 04:13:31 +0000 |
commit | 96122debc194ee6a368512e1f8ca4e5c79628976 (patch) | |
tree | 084bfbf3573e973d6b7837a0b22203099a5cbe3e /llvm/examples/ModuleMaker/ModuleMaker.cpp | |
parent | 2857ccbaa7b1c755af1b392b13f0636fb0326a24 (diff) | |
download | bcm5719-llvm-96122debc194ee6a368512e1f8ca4e5c79628976.tar.gz bcm5719-llvm-96122debc194ee6a368512e1f8ca4e5c79628976.zip |
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!
llvm-svn: 74584
Diffstat (limited to 'llvm/examples/ModuleMaker/ModuleMaker.cpp')
-rw-r--r-- | llvm/examples/ModuleMaker/ModuleMaker.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/llvm/examples/ModuleMaker/ModuleMaker.cpp b/llvm/examples/ModuleMaker/ModuleMaker.cpp index 154e24065c0..e2584e7ff34 100644 --- a/llvm/examples/ModuleMaker/ModuleMaker.cpp +++ b/llvm/examples/ModuleMaker/ModuleMaker.cpp @@ -27,8 +27,7 @@ int main() { Module *M = new Module("test"); // Create the main function: first create the type 'int ()' - FunctionType *FT = FunctionType::get(Type::Int32Ty, std::vector<const Type*>(), - /*not vararg*/false); + FunctionType *FT = FunctionType::get(Type::Int32Ty, /*not vararg*/false); // By passing a module as the last parameter to the Function constructor, // it automatically gets appended to the Module. |