Tidy up. Spelling.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@151758 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Jim Grosbach 2012-02-29 21:46:32 +00:00
parent 5d9651df89
commit eea87153d1

View File

@ -706,7 +706,7 @@ RegisterInfoEmitter::runTargetDesc(raw_ostream &OS, CodeGenTarget &Target,
// Calculate the mapping of subregister+index pairs to physical registers. // Calculate the mapping of subregister+index pairs to physical registers.
// This will also create further anonymous indexes. // This will also create further anonymous indices.
unsigned NamedIndices = RegBank.getNumNamedIndices(); unsigned NamedIndices = RegBank.getNumNamedIndices();
// Emit SubRegIndex names, skipping 0 // Emit SubRegIndex names, skipping 0
@ -720,7 +720,7 @@ RegisterInfoEmitter::runTargetDesc(raw_ostream &OS, CodeGenTarget &Target,
} }
OS << "\" };\n\n"; OS << "\" };\n\n";
// Emit names of the anonymus subreg indexes. // Emit names of the anonymous subreg indices.
if (SubRegIndices.size() > NamedIndices) { if (SubRegIndices.size() > NamedIndices) {
OS << " enum {"; OS << " enum {";
for (unsigned i = NamedIndices, e = SubRegIndices.size(); i != e; ++i) { for (unsigned i = NamedIndices, e = SubRegIndices.size(); i != e; ++i) {