diff --git a/support/tools/TableGen/CodeEmitterGen.cpp b/support/tools/TableGen/CodeEmitterGen.cpp index b98e71216d4..b3928b8c36e 100644 --- a/support/tools/TableGen/CodeEmitterGen.cpp +++ b/support/tools/TableGen/CodeEmitterGen.cpp @@ -53,9 +53,7 @@ void CodeEmitterGen::run(std::ostream &o) { std::map OpOrder; std::map OpContinuous; for (unsigned i = 0, e = Vals.size(); i != e; ++i) { - if (!Vals[i].getPrefix() && !Vals[i].getValue()->isComplete() && - // ignore annul and predict bits since no one sets them yet - Vals[i].getName() != "annul" && Vals[i].getName() != "predict") { + if (!Vals[i].getPrefix() && !Vals[i].getValue()->isComplete()) { // Is the operand continuous? If so, we can just mask and OR it in // instead of doing it bit-by-bit, saving a lot in runtime cost. const BitsInit *InstInit = BI; @@ -199,11 +197,6 @@ void CodeEmitterGen::run(std::ostream &o) { } } } - } else { - // ignore annul and predict bits since no one sets them yet - if (Vals[f].getName() == "annul" || Vals[f].getName() == "predict") { - o << " // found " << Vals[f].getName() << "\n"; - } } } diff --git a/utils/TableGen/CodeEmitterGen.cpp b/utils/TableGen/CodeEmitterGen.cpp index b98e71216d4..b3928b8c36e 100644 --- a/utils/TableGen/CodeEmitterGen.cpp +++ b/utils/TableGen/CodeEmitterGen.cpp @@ -53,9 +53,7 @@ void CodeEmitterGen::run(std::ostream &o) { std::map OpOrder; std::map OpContinuous; for (unsigned i = 0, e = Vals.size(); i != e; ++i) { - if (!Vals[i].getPrefix() && !Vals[i].getValue()->isComplete() && - // ignore annul and predict bits since no one sets them yet - Vals[i].getName() != "annul" && Vals[i].getName() != "predict") { + if (!Vals[i].getPrefix() && !Vals[i].getValue()->isComplete()) { // Is the operand continuous? If so, we can just mask and OR it in // instead of doing it bit-by-bit, saving a lot in runtime cost. const BitsInit *InstInit = BI; @@ -199,11 +197,6 @@ void CodeEmitterGen::run(std::ostream &o) { } } } - } else { - // ignore annul and predict bits since no one sets them yet - if (Vals[f].getName() == "annul" || Vals[f].getName() == "predict") { - o << " // found " << Vals[f].getName() << "\n"; - } } }