From c84043be50249c99fe36dc6e807565199a430550 Mon Sep 17 00:00:00 2001 From: Gabor Greif Date: Thu, 12 Dec 2013 08:00:34 +0000 Subject: [PATCH] typo in comment llvm-svn: 197136 --- lib/Target/PowerPC/PPCTargetMachine.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/Target/PowerPC/PPCTargetMachine.cpp b/lib/Target/PowerPC/PPCTargetMachine.cpp index 1d228b613ba..43d6b1cfbc7 100644 --- a/lib/Target/PowerPC/PPCTargetMachine.cpp +++ b/lib/Target/PowerPC/PPCTargetMachine.cpp @@ -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