From e9e960ff55594d503d59b3ccc002d2cd5e4ffa67 Mon Sep 17 00:00:00 2001 From: Bill Wendling Date: Tue, 10 Mar 2009 21:59:25 +0000 Subject: [PATCH] - Fix misspelled method name. - Remove unused method. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@66585 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/CodeGen/AsmPrinter/DwarfWriter.cpp | 16 +++++----------- 1 file changed, 5 insertions(+), 11 deletions(-) diff --git a/lib/CodeGen/AsmPrinter/DwarfWriter.cpp b/lib/CodeGen/AsmPrinter/DwarfWriter.cpp index eb2e448abc5..fa230b5a822 100644 --- a/lib/CodeGen/AsmPrinter/DwarfWriter.cpp +++ b/lib/CodeGen/AsmPrinter/DwarfWriter.cpp @@ -1303,10 +1303,10 @@ class DwarfDebug : public Dwarf { std::vector DebugFrames; private: - /// getSourceDirsectoryAndFileIds - Return the directory and file ids that + /// getSourceDirectoryAndFileIds - Return the directory and file ids that /// maps to the source id. Source id starts at 1. std::pair - getSourceDirsectoryAndFileIds(unsigned SId) const { + getSourceDirectoryAndFileIds(unsigned SId) const { return SourceIds[SId-1]; } @@ -1329,7 +1329,6 @@ private: } /// getNumSourceIds - Return the number of unique source ids. - /// unsigned getNumSourceIds() const { return SourceIds.size(); } @@ -2503,7 +2502,7 @@ private: // Emit files. for (unsigned SI = 1, SE = getNumSourceIds()+1; SI != SE; ++SI) { // Remember source id starts at 1. - std::pair Id = getSourceDirsectoryAndFileIds(SI); + std::pair Id = getSourceDirectoryAndFileIds(SI); Asm->EmitString(getSourceFileName(Id.second)); Asm->EOL("Source"); Asm->EmitULEB128Bytes(Id.first); @@ -2545,7 +2544,7 @@ private: Asm->EOL(); else { std::pair SourceID = - getSourceDirsectoryAndFileIds(LineInfo.getSourceID()); + getSourceDirectoryAndFileIds(LineInfo.getSourceID()); O << '\t' << TAI->getCommentString() << ' ' << getSourceDirectoryName(SourceID.first) << ' ' << getSourceFileName(SourceID.second) @@ -3083,7 +3082,7 @@ public: if (TAI->hasDotLocAndDotFile()) { for (unsigned i = 1, e = getNumSourceIds()+1; i != e; ++i) { // Remember source id starts at 1. - std::pair Id = getSourceDirsectoryAndFileIds(i); + std::pair Id = getSourceDirectoryAndFileIds(i); sys::Path FullPath(getSourceDirectoryName(Id.first)); bool AppendOk = FullPath.appendComponent(getSourceFileName(Id.second)); @@ -3339,11 +3338,6 @@ public: return Lines.size(); } - /// getNumSourceFiles - Return the number of source files in the debug info. - unsigned getNumSourceFiles() const { - return SourceFileNames.size(); - } - /// getOrCreateSourceID - Public version of GetOrCreateSourceID. This can be /// timed. Look up the source id with the given directory and source file /// names. If none currently exists, create a new id and insert it in the -- 2.34.1