diff options
author | Devang Patel <dpatel@apple.com> | 2009-01-13 00:35:13 +0000 |
---|---|---|
committer | Devang Patel <dpatel@apple.com> | 2009-01-13 00:35:13 +0000 |
commit | 83489bb7700c69b7a4a8da59365c42d3f5c8129b (patch) | |
tree | 79c21ea218081ff5061dbe31dfe2b6da1e60bdae /include/llvm/Target/TargetLowering.h | |
parent | 6fbbe4390b4acdcfd1887498c1a05a7f24fa9666 (diff) | |
download | external_llvm-83489bb7700c69b7a4a8da59365c42d3f5c8129b.tar.gz external_llvm-83489bb7700c69b7a4a8da59365c42d3f5c8129b.tar.bz2 external_llvm-83489bb7700c69b7a4a8da59365c42d3f5c8129b.zip |
Use DebugInfo interface to lower dbg_* intrinsics.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@62127 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Target/TargetLowering.h')
-rw-r--r-- | include/llvm/Target/TargetLowering.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/llvm/Target/TargetLowering.h b/include/llvm/Target/TargetLowering.h index e6d5ff8621..dc7c6eecdd 100644 --- a/include/llvm/Target/TargetLowering.h +++ b/include/llvm/Target/TargetLowering.h @@ -43,6 +43,7 @@ namespace llvm { class MachineFrameInfo; class MachineInstr; class MachineModuleInfo; + class DwarfWriter; class SDNode; class SDValue; class SelectionDAG; @@ -1199,7 +1200,7 @@ public: /// or null if the target does not support "fast" ISel. virtual FastISel * createFastISel(MachineFunction &, - MachineModuleInfo *, + MachineModuleInfo *, DwarfWriter *, DenseMap<const Value *, unsigned> &, DenseMap<const BasicBlock *, MachineBasicBlock *> &, DenseMap<const AllocaInst *, int> & |