mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-14 11:32:34 +00:00
Don't emit JIT code for these instructions
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25669 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
acc43bf4ab
commit
188454ae2b
@ -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";
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user