Fix goofy commentary in PPCTargetObjectFile.cpp.
authorBill Schmidt <wschmidt@linux.vnet.ibm.com>
Mon, 13 May 2013 19:40:36 +0000 (19:40 +0000)
committerBill Schmidt <wschmidt@linux.vnet.ibm.com>
Mon, 13 May 2013 19:40:36 +0000 (19:40 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@181725 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/PowerPC/PPCTargetObjectFile.cpp

index b374b5992a6b20dd402ad499bde279c458279fb2..90e4f1545250472819c118d42af6244bf36c20ce 100644 (file)
@@ -32,7 +32,7 @@ SelectSectionForGlobal(const GlobalValue *GV, SectionKind Kind,
   if (DefaultSection != ReadOnlySection)
     return DefaultSection;
 
-  // Here override isReadOnly() to isReadOnlyWithRel() for PPC64 SVR4 ABI
+  // Here override ReadOnlySection to DataRelROSection for PPC64 SVR4 ABI
   // when we have a constant that contains global relocations.  This is
   // necessary because of this ABI's handling of pointers to functions in
   // a shared library.  The address of a function is actually the address
@@ -43,7 +43,7 @@ SelectSectionForGlobal(const GlobalValue *GV, SectionKind Kind,
   // pointers to functions in shared libraries into dynamic relocations,
   // because of an ordering problem with initialization of copy relocs and
   // PLT entries.  The dynamic relocation will be initialized by the dynamic
-  // linker, so we must use the DataRelRO section instead of ReadOnlySection.
+  // linker, so we must use DataRelROSection instead of ReadOnlySection.
   // For more information, see the description of ELIMINATE_COPY_RELOCS in
   // GNU ld.
   const GlobalVariable *GVar = dyn_cast<GlobalVariable>(GV);