Hyphenate ##-bit and remove first-person from comments.

llvm-svn: 15663
This commit is contained in:
Misha Brukman 2004-08-11 13:35:44 +00:00
parent f17ea0f7b7
commit 7224ee1e4c
1 changed files with 4 additions and 4 deletions

View File

@ -38,9 +38,9 @@ namespace {
// Register the targets // Register the targets
RegisterTarget<PPC32TargetMachine> RegisterTarget<PPC32TargetMachine>
X("ppc32", " PowerPC 32bit (experimental)"); X("ppc32", " PowerPC 32-bit (experimental)");
RegisterTarget<PPC64TargetMachine> RegisterTarget<PPC64TargetMachine>
Y("ppc64", " PowerPC 64bit (unimplemented)"); Y("ppc64", " PowerPC 64-bit (unimplemented)");
} }
PowerPCTargetMachine::PowerPCTargetMachine(const std::string &name, PowerPCTargetMachine::PowerPCTargetMachine(const std::string &name,
@ -92,8 +92,8 @@ bool PowerPCTargetMachine::addPassesToEmitAssembly(PassManager &PM,
if (PrintMachineCode) if (PrintMachineCode)
PM.add(createMachineFunctionPrinterPass(&std::cerr)); PM.add(createMachineFunctionPrinterPass(&std::cerr));
// I want a PowerPC specific prolog/epilog code inserter so I can put the // PowerPC-specific prolog/epilog code inserter to put the fills/spills in the
// fills/spills in the right spots. // right spots.
PM.add(createPowerPCPEI()); PM.add(createPowerPCPEI());
// Must run branch selection immediately preceding the printer // Must run branch selection immediately preceding the printer