diff options
-rw-r--r-- | lib/CodeGen/ELF.h | 2 | ||||
-rw-r--r-- | lib/CodeGen/ELFWriter.cpp | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/lib/CodeGen/ELF.h b/lib/CodeGen/ELF.h index 09615d9..c22f6ed 100644 --- a/lib/CodeGen/ELF.h +++ b/lib/CodeGen/ELF.h @@ -166,7 +166,7 @@ namespace llvm { std::vector<unsigned char> SectionData; /// Relocations - The relocations that we have encountered so far in this - /// section that we will need to convert to MachORelocation entries when + /// section that we will need to convert to Elf relocation entries when /// the file is written. std::vector<MachineRelocation> Relocations; diff --git a/lib/CodeGen/ELFWriter.cpp b/lib/CodeGen/ELFWriter.cpp index 4bc2681..3859ea3 100644 --- a/lib/CodeGen/ELFWriter.cpp +++ b/lib/CodeGen/ELFWriter.cpp @@ -290,7 +290,6 @@ void ELFWriter::EmitSymbolTable() { // Set the zero'th symbol to a null byte, as required. StrTabOut.outbyte(0); - //SymbolTable[0].NameIdx = 0; unsigned Index = 1; for (unsigned i = 1, e = SymbolTable.size(); i != e; ++i) { // Use the name mangler to uniquify the LLVM symbol. |