[lld] r268218 - Replace non-ascii character.
Simon Atanasyan via llvm-commits
llvm-commits at lists.llvm.org
Mon May 2 02:49:03 PDT 2016
Author: atanasyan
Date: Mon May 2 04:49:03 2016
New Revision: 268218
URL: http://llvm.org/viewvc/llvm-project?rev=268218&view=rev
Log:
Replace non-ascii character.
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=268218&r1=268217&r2=268218&view=diff
==============================================================================
--- lld/trunk/ELF/Writer.cpp (original)
+++ lld/trunk/ELF/Writer.cpp Mon May 2 04:49:03 2016
@@ -605,7 +605,7 @@ void Writer<ELFT>::scanRelocs(InputSecti
if (Type == R_MIPS_LO16 && Expr == R_PC)
// R_MIPS_LO16 expression has R_PC type iif the target is _gp_disp
// symbol. In that case we should use the following formula for
- // calculation "AHL + GP â P + 4". Let's add 4 right here.
+ // calculation "AHL + GP - P + 4". Let's add 4 right here.
// For details see p. 4-19 at
// ftp://www.linux-mips.org/pub/linux/mips/doc/ABI/mipsabi.pdf
Addend += 4;
More information about the llvm-commits
mailing list