aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric Christopher <echristo@gmail.com>2013-07-22 22:25:09 +0000
committerEric Christopher <echristo@gmail.com>2013-07-22 22:25:09 +0000
commitbd8f8a34ba13067e23bfff743a58df53a11a475d (patch)
treeafc8f6f9e6007a18211275b0f3c6b891f3efe5fb
parent60d659172cb7a85ea67c5d94c9f465c98c4e4786 (diff)
downloadexternal_llvm-bd8f8a34ba13067e23bfff743a58df53a11a475d.zip
external_llvm-bd8f8a34ba13067e23bfff743a58df53a11a475d.tar.gz
external_llvm-bd8f8a34ba13067e23bfff743a58df53a11a475d.tar.bz2
Typo.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@186886 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/Object/MachOObjectFile.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Object/MachOObjectFile.cpp b/lib/Object/MachOObjectFile.cpp
index e9caf3a..19c8421 100644
--- a/lib/Object/MachOObjectFile.cpp
+++ b/lib/Object/MachOObjectFile.cpp
@@ -1181,7 +1181,7 @@ MachOObjectFile::getRelocationHidden(DataRefImpl Rel, bool &Result) const {
if (Type == macho::RIT_Pair) Result = true;
} else if (Arch == Triple::x86_64) {
// On x86_64, X86_64_RELOC_UNSIGNED is hidden only when it follows
- // an X864_64_RELOC_SUBTRACTOR.
+ // an X86_64_RELOC_SUBTRACTOR.
if (Type == macho::RIT_X86_64_Unsigned && Rel.d.a > 0) {
DataRefImpl RelPrev = Rel;
RelPrev.d.a--;