typo in comment
authorGabor Greif <ggreif@gmail.com>
Thu, 12 Dec 2013 08:00:34 +0000 (08:00 +0000)
committerGabor Greif <ggreif@gmail.com>
Thu, 12 Dec 2013 08:00:34 +0000 (08:00 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@197136 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/PowerPC/PPCTargetMachine.cpp

index 1d228b613ba55e3eafec04b43265d9828281578f..43d6b1cfbc7914e46593270f47360eed49fbbfde 100644 (file)
@@ -37,7 +37,7 @@ extern "C" void LLVMInitializePowerPCTarget() {
 static std::string getDataLayoutString(const PPCSubtarget &ST) {
   const Triple &T = ST.getTargetTriple();
 
-  // PPC is big endian
+  // PPC is big endian.
   std::string Ret = "E";
 
   // PPC64 has 64 bit pointers, PPC32 has 32 bit pointers.
@@ -62,7 +62,7 @@ static std::string getDataLayoutString(const PPCSubtarget &ST) {
   if (ST.isPPC64() && ST.isSVR4ABI())
     Ret += "-v128:128:128";
 
-  // PPC64 has 32 and 64 bit register, PPC32 has only 32 bit ones.
+  // PPC64 has 32 and 64 bit registers, PPC32 has only 32 bit ones.
   if (ST.isPPC64())
     Ret += "-n32:64";
   else