diff options
author | Evan Cheng <evan.cheng@apple.com> | 2008-09-02 06:51:36 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2008-09-02 06:51:36 +0000 |
commit | acff339e391d23e748b69f61ae5c27fd5620c69f (patch) | |
tree | 74ccefbef7593e6745946f0ae617e9377d011e7f /utils | |
parent | ed63214fcbebcaf989dbc6a5bf7c3b6df67732f5 (diff) | |
download | external_llvm-acff339e391d23e748b69f61ae5c27fd5620c69f.zip external_llvm-acff339e391d23e748b69f61ae5c27fd5620c69f.tar.gz external_llvm-acff339e391d23e748b69f61ae5c27fd5620c69f.tar.bz2 |
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
Diffstat (limited to 'utils')
-rw-r--r-- | utils/TableGen/CodeEmitterGen.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/utils/TableGen/CodeEmitterGen.cpp b/utils/TableGen/CodeEmitterGen.cpp index 557a8f4..74268a3 100644 --- a/utils/TableGen/CodeEmitterGen.cpp +++ b/utils/TableGen/CodeEmitterGen.cpp @@ -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 |