diff options
author | Manman Ren <mren@apple.com> | 2013-03-12 20:17:00 +0000 |
---|---|---|
committer | Manman Ren <mren@apple.com> | 2013-03-12 20:17:00 +0000 |
commit | 5ce24ffca242f5cdb2c2001f691f165db07517bc (patch) | |
tree | 9c816fca7874a59743a14acdaf422d616023efbb /llvm/lib/MC/MCParser/AsmParser.cpp | |
parent | 897ce8c8bb7816eab9a082df7bf391525f6588f8 (diff) | |
download | bcm5719-llvm-5ce24ffca242f5cdb2c2001f691f165db07517bc.tar.gz bcm5719-llvm-5ce24ffca242f5cdb2c2001f691f165db07517bc.zip |
Debug Info: use SmallVector instead of std::vector in MCDwarfDirsCUMap and MCDwarfFilesCUMap
llvm-svn: 176893
Diffstat (limited to 'llvm/lib/MC/MCParser/AsmParser.cpp')
-rw-r--r-- | llvm/lib/MC/MCParser/AsmParser.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/MC/MCParser/AsmParser.cpp b/llvm/lib/MC/MCParser/AsmParser.cpp index 6ab49ec92c6..9d523774e4e 100644 --- a/llvm/lib/MC/MCParser/AsmParser.cpp +++ b/llvm/lib/MC/MCParser/AsmParser.cpp @@ -626,7 +626,7 @@ bool AsmParser::Run(bool NoInitialTextSection, bool NoFinalize) { return TokError("unmatched .ifs or .elses"); // Check to see there are no empty DwarfFile slots. - const std::vector<MCDwarfFile *> &MCDwarfFiles = + const SmallVectorImpl<MCDwarfFile *> &MCDwarfFiles = getContext().getMCDwarfFiles(); for (unsigned i = 1; i < MCDwarfFiles.size(); i++) { if (!MCDwarfFiles[i]) @@ -1495,7 +1495,7 @@ bool AsmParser::ParseStatement(ParseStatementInfo &Info) { // If we previously parsed a cpp hash file line comment then make sure the // current Dwarf File is for the CppHashFilename if not then emit the // Dwarf File table for it and adjust the line number for the .loc. - const std::vector<MCDwarfFile *> &MCDwarfFiles = + const SmallVectorImpl<MCDwarfFile *> &MCDwarfFiles = getContext().getMCDwarfFiles(); if (CppHashFilename.size() != 0) { if (MCDwarfFiles[getContext().getGenDwarfFileNumber()]->getName() != |