Don't emit JIT code for these instructions

llvm-svn: 25669
This commit is contained in:
Chris Lattner 2006-01-27 01:39:38 +00:00
parent a1769576f0
commit 1ec0a10fed

View File

@ -89,6 +89,8 @@ void CodeEmitterGen::run(std::ostream &o) {
for (std::vector<Record*>::iterator I = Insts.begin(), E = Insts.end();
I != E; ++I) {
Record *R = *I;
if (R->getName() == "PHI" || R->getName() == "INLINEASM") continue;
o << " case " << Namespace << R->getName() << ": {\n"
<< " DEBUG(std::cerr << \"Emitting " << R->getName() << "\\n\");\n";