aboutsummaryrefslogtreecommitdiffstats
path: root/lib/CodeGen/SelectionDAG/FastISel.cpp
diff options
context:
space:
mode:
authorDevang Patel <dpatel@apple.com>2010-01-05 01:47:06 +0000
committerDevang Patel <dpatel@apple.com>2010-01-05 01:47:06 +0000
commit4efb3b2015b855a403ad0963000fe2b125059e6a (patch)
treeca216f1b867feb39ed678113220b99500be91d74 /lib/CodeGen/SelectionDAG/FastISel.cpp
parent141e1c4e936d3b5249b30ac8d581ee3c6202d56f (diff)
downloadexternal_llvm-4efb3b2015b855a403ad0963000fe2b125059e6a.zip
external_llvm-4efb3b2015b855a403ad0963000fe2b125059e6a.tar.gz
external_llvm-4efb3b2015b855a403ad0963000fe2b125059e6a.tar.bz2
Delete renaming use of dead dbg intrinsics.
Intrinsic::dbg_stoppoint Intrinsic::dbg_region_start Intrinsic::dbg_region_end Intrinsic::dbg_func_start git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@92672 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/SelectionDAG/FastISel.cpp')
-rw-r--r--lib/CodeGen/SelectionDAG/FastISel.cpp6
1 files changed, 0 insertions, 6 deletions
diff --git a/lib/CodeGen/SelectionDAG/FastISel.cpp b/lib/CodeGen/SelectionDAG/FastISel.cpp
index 33694f2..0017fc2 100644
--- a/lib/CodeGen/SelectionDAG/FastISel.cpp
+++ b/lib/CodeGen/SelectionDAG/FastISel.cpp
@@ -325,12 +325,6 @@ bool FastISel::SelectCall(User *I) {
unsigned IID = F->getIntrinsicID();
switch (IID) {
default: break;
- case Intrinsic::dbg_stoppoint:
- case Intrinsic::dbg_region_start:
- case Intrinsic::dbg_region_end:
- case Intrinsic::dbg_func_start:
- // FIXME - Remove this instructions once the dust settles.
- return true;
case Intrinsic::dbg_declare: {
DbgDeclareInst *DI = cast<DbgDeclareInst>(I);
if (!DIDescriptor::ValidDebugInfo(DI->getVariable(), CodeGenOpt::None)||!DW