Minor cleanups

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7462 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2003-08-01 04:15:25 +00:00
parent ab47ae3381
commit cf1b585312
2 changed files with 4 additions and 12 deletions

View File

@ -10,10 +10,7 @@
bool CodeEmitterGen::run(std::ostream &o) {
std::vector<Record*> Insts;
const std::map<std::string, Record*> &Defs = Records.getDefs();
Records.getAllDerivedDefinitions("Instruction", Insts);
if (Records.getAllDerivedDefinitions("Instruction", Insts)) return true;
std::string Namespace = "V9::";
std::string ClassName = "SparcV9CodeEmitter::";
@ -25,8 +22,7 @@ bool CodeEmitterGen::run(std::ostream &o) {
<< " DEBUG(std::cerr << MI);\n"
<< " switch (MI.getOpcode()) {\n";
for (std::vector<Record*>::iterator I = Insts.begin(), E = Insts.end();
I != E; ++I)
{
I != E; ++I) {
Record *R = *I;
o << " case " << Namespace << R->getName() << ": {\n"
<< " DEBUG(std::cerr << \"Emitting " << R->getName() << "\\n\");\n";

View File

@ -10,10 +10,7 @@
bool CodeEmitterGen::run(std::ostream &o) {
std::vector<Record*> Insts;
const std::map<std::string, Record*> &Defs = Records.getDefs();
Records.getAllDerivedDefinitions("Instruction", Insts);
if (Records.getAllDerivedDefinitions("Instruction", Insts)) return true;
std::string Namespace = "V9::";
std::string ClassName = "SparcV9CodeEmitter::";
@ -25,8 +22,7 @@ bool CodeEmitterGen::run(std::ostream &o) {
<< " DEBUG(std::cerr << MI);\n"
<< " switch (MI.getOpcode()) {\n";
for (std::vector<Record*>::iterator I = Insts.begin(), E = Insts.end();
I != E; ++I)
{
I != E; ++I) {
Record *R = *I;
o << " case " << Namespace << R->getName() << ": {\n"
<< " DEBUG(std::cerr << \"Emitting " << R->getName() << "\\n\");\n";