summaryrefslogtreecommitdiff
path: root/include/llvm/CodeGen/FastISel.h
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2010-04-14 19:53:31 +0000
committerDan Gohman <gohman@apple.com>2010-04-14 19:53:31 +0000
commit2520864773dcb73d76d297605f4bc41c0cf3fa39 (patch)
treed8fac8b4b88b2155edcaf56c8ddab11326232773 /include/llvm/CodeGen/FastISel.h
parent7f6b8b8891adedce162ce23f5b540f98af202b22 (diff)
downloadllvm-2520864773dcb73d76d297605f4bc41c0cf3fa39.tar.gz
llvm-2520864773dcb73d76d297605f4bc41c0cf3fa39.tar.bz2
llvm-2520864773dcb73d76d297605f4bc41c0cf3fa39.tar.xz
Factor out EH landing pad code into a separate function, and constify
a bunch of stuff to support it. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@101273 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CodeGen/FastISel.h')
-rw-r--r--include/llvm/CodeGen/FastISel.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/CodeGen/FastISel.h b/include/llvm/CodeGen/FastISel.h
index a1752d3534..1364e6a9ba 100644
--- a/include/llvm/CodeGen/FastISel.h
+++ b/include/llvm/CodeGen/FastISel.h
@@ -47,7 +47,7 @@ protected:
DenseMap<const BasicBlock *, MachineBasicBlock *> &MBBMap;
DenseMap<const AllocaInst *, int> &StaticAllocaMap;
#ifndef NDEBUG
- SmallSet<Instruction*, 8> &CatchInfoLost;
+ SmallSet<const Instruction *, 8> &CatchInfoLost;
#endif
MachineFunction &MF;
MachineRegisterInfo &MRI;
@@ -118,7 +118,7 @@ protected:
DenseMap<const BasicBlock *, MachineBasicBlock *> &bm,
DenseMap<const AllocaInst *, int> &am
#ifndef NDEBUG
- , SmallSet<Instruction*, 8> &cil
+ , SmallSet<const Instruction *, 8> &cil
#endif
);