mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-13 20:32:21 +00:00
We don't modify the LLVM rep, remain const correct
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7345 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
2a865b015b
commit
dee1263c7c
@ -143,8 +143,8 @@ namespace {
|
||||
class Emitter : public MachineFunctionPass {
|
||||
const X86InstrInfo *II;
|
||||
MachineCodeEmitter &MCE;
|
||||
std::map<BasicBlock*, unsigned> BasicBlockAddrs;
|
||||
std::vector<std::pair<BasicBlock*, unsigned> > BBRefs;
|
||||
std::map<const BasicBlock*, unsigned> BasicBlockAddrs;
|
||||
std::vector<std::pair<const BasicBlock*, unsigned> > BBRefs;
|
||||
public:
|
||||
Emitter(MachineCodeEmitter &mce) : II(0), MCE(mce) {}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user