[lld] r249201 - [ELF/AArch64] Fix a couple of typos. My bad, sorry.
Davide Italiano via llvm-commits
llvm-commits at lists.llvm.org
Fri Oct 2 15:17:09 PDT 2015
Author: davide
Date: Fri Oct 2 17:17:09 2015
New Revision: 249201
URL: http://llvm.org/viewvc/llvm-project?rev=249201&view=rev
Log:
[ELF/AArch64] Fix a couple of typos. My bad, sorry.
Modified:
lld/trunk/ELF/Target.cpp
Modified: lld/trunk/ELF/Target.cpp
URL: http://llvm.org/viewvc/llvm-project/lld/trunk/ELF/Target.cpp?rev=249201&r1=249200&r2=249201&view=diff
==============================================================================
--- lld/trunk/ELF/Target.cpp (original)
+++ lld/trunk/ELF/Target.cpp Fri Oct 2 17:17:09 2015
@@ -262,7 +262,7 @@ static void AArch64UpdateAdr(uint8_t *Lo
// Page(Expr) is the page address of the expression Expr, defined
// as (Expr & ~0xFFF). (This applies even if the machine page size
-// supported by the platform has a differen value).
+// supported by the platform has a different value.)
static uint64_t AArch64GetPage(uint64_t Expr) {
return Expr & (~static_cast<uint64_t>(0xFFF));
}
More information about the llvm-commits
mailing list