From 9582822341bd8a7847b1f796be19c621a74bd616 Mon Sep 17 00:00:00 2001 From: Misha Brukman Date: Wed, 11 Aug 2004 13:35:44 +0000 Subject: [PATCH] Hyphenate ##-bit and remove first-person from comments. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15663 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Target/PowerPC/PPCTargetMachine.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/Target/PowerPC/PPCTargetMachine.cpp b/lib/Target/PowerPC/PPCTargetMachine.cpp index 8959ed4a504..0fdc14c48f2 100644 --- a/lib/Target/PowerPC/PPCTargetMachine.cpp +++ b/lib/Target/PowerPC/PPCTargetMachine.cpp @@ -38,9 +38,9 @@ namespace { // Register the targets RegisterTarget - X("ppc32", " PowerPC 32bit (experimental)"); + X("ppc32", " PowerPC 32-bit (experimental)"); RegisterTarget - Y("ppc64", " PowerPC 64bit (unimplemented)"); + Y("ppc64", " PowerPC 64-bit (unimplemented)"); } PowerPCTargetMachine::PowerPCTargetMachine(const std::string &name, @@ -92,8 +92,8 @@ bool PowerPCTargetMachine::addPassesToEmitAssembly(PassManager &PM, if (PrintMachineCode) PM.add(createMachineFunctionPrinterPass(&std::cerr)); - // I want a PowerPC specific prolog/epilog code inserter so I can put the - // fills/spills in the right spots. + // PowerPC-specific prolog/epilog code inserter to put the fills/spills in the + // right spots. PM.add(createPowerPCPEI()); // Must run branch selection immediately preceding the printer