[lld] r257450 - [ELF][MIPS] Fix a typo in the comment
Simon Atanasyan via llvm-commits
llvm-commits at lists.llvm.org
Mon Jan 11 22:24:02 PST 2016
Author: atanasyan
Date: Tue Jan 12 00:24:02 2016
New Revision: 257450
URL: http://llvm.org/viewvc/llvm-project?rev=257450&view=rev
Log:
[ELF][MIPS] Fix a typo in the comment
Modified:
lld/trunk/ELF/Writer.cpp
Modified: lld/trunk/ELF/Writer.cpp
URL: http://llvm.org/viewvc/llvm-project/lld/trunk/ELF/Writer.cpp?rev=257450&r1=257449&r2=257450&view=diff
==============================================================================
--- lld/trunk/ELF/Writer.cpp (original)
+++ lld/trunk/ELF/Writer.cpp Tue Jan 12 00:24:02 2016
@@ -1158,7 +1158,7 @@ static uint32_t getELFFlags() {
if (Config->EMachine != EM_MIPS)
return 0;
// FIXME: In fact ELF flags depends on ELF flags of input object files
- // and selected emulation. For now just use hadr coded values.
+ // and selected emulation. For now just use hard coded values.
uint32_t V = EF_MIPS_ABI_O32 | EF_MIPS_CPIC | EF_MIPS_ARCH_32R2;
if (Config->Shared)
V |= EF_MIPS_PIC;
More information about the llvm-commits
mailing list