Remove several unused variables.
[oota-llvm.git] / tools / llvm-objdump / MachODump.cpp
index 403be5a92baa28c09578e759ede64a10e42c3252..86923fd1d7f53091aa4ec2098d100deb6608dca6 100644 (file)
@@ -260,8 +260,6 @@ static void DisassembleInputMachO2(StringRef Filename,
   getSectionsAndSymbols(Header, MachOOF, Sections, Symbols, FoundFns,
                         BaseSegmentAddress);
 
-  // Make a copy of the unsorted symbol list. FIXME: duplication
-  std::vector<SymbolRef> UnsortedSymbols(Symbols);
   // Sort the symbols by address, just in case they didn't come in that way.
   std::sort(Symbols.begin(), Symbols.end(), SymbolSorter());