mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-13 04:38:24 +00:00
Change getBinaryCodeForInstr prototype. First operand MachineInstr& should be const. Make corresponding changes.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@55623 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -89,7 +89,7 @@ void CodeEmitterGen::run(std::ostream &o) {
|
||||
|
||||
// Emit function declaration
|
||||
o << "unsigned " << Target.getName() << "CodeEmitter::"
|
||||
<< "getBinaryCodeForInstr(MachineInstr &MI) {\n";
|
||||
<< "getBinaryCodeForInstr(const MachineInstr &MI) {\n";
|
||||
|
||||
// Emit instruction base values
|
||||
o << " static const unsigned InstBits[] = {\n";
|
||||
@ -221,6 +221,7 @@ void CodeEmitterGen::run(std::ostream &o) {
|
||||
o << " const unsigned opcode = MI.getOpcode();\n"
|
||||
<< " unsigned Value = InstBits[opcode];\n"
|
||||
<< " unsigned op;\n"
|
||||
<< " op = op; // suppress warning\n"
|
||||
<< " switch (opcode) {\n";
|
||||
|
||||
// Emit each case statement
|
||||
|
Reference in New Issue
Block a user