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 | 3fd51c08231f27cb280cab51d72e8b5f6f096e32 (patch) | |
tree | f66dcf7ae670ad83fafd93662fe76538a2203c35 /lib/Debugger | |
parent | d617fe7ba250568ad8b102268c316c519ed67a10 (diff) | |
download | external_llvm-3fd51c08231f27cb280cab51d72e8b5f6f096e32.zip external_llvm-3fd51c08231f27cb280cab51d72e8b5f6f096e32.tar.gz external_llvm-3fd51c08231f27cb280cab51d72e8b5f6f096e32.tar.bz2 |
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/Debugger')
-rw-r--r-- | lib/Debugger/ProgramInfo.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/lib/Debugger/ProgramInfo.cpp b/lib/Debugger/ProgramInfo.cpp index 125ff55..e58b3d5 100644 --- a/lib/Debugger/ProgramInfo.cpp +++ b/lib/Debugger/ProgramInfo.cpp @@ -271,8 +271,7 @@ ProgramInfo::getSourceFiles(bool RequiresCompleteMap) { // should be on the use list of the llvm.dbg.translation_units global. // GlobalVariable *Units = - M->getGlobalVariable("llvm.dbg.translation_units", - StructType::get(std::vector<const Type*>())); + M->getGlobalVariable("llvm.dbg.translation_units", StructType::get()); if (Units == 0) throw "Program contains no debugging information!"; @@ -354,8 +353,7 @@ ProgramInfo::getSourceFunctions(bool RequiresCompleteMap) { // should be on the use list of the llvm.dbg.translation_units global. // GlobalVariable *Units = - M->getGlobalVariable("llvm.dbg.globals", - StructType::get(std::vector<const Type*>())); + M->getGlobalVariable("llvm.dbg.globals", StructType::get()); if (Units == 0) throw "Program contains no debugging information!"; |