Typo.
authorEric Christopher <echristo@gmail.com>
Mon, 22 Jul 2013 22:25:09 +0000 (22:25 +0000)
committerEric Christopher <echristo@gmail.com>
Mon, 22 Jul 2013 22:25:09 +0000 (22:25 +0000)
llvm-svn: 186886

llvm/lib/Object/MachOObjectFile.cpp

index e9caf3a..19c8421 100644 (file)
@@ -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--;