diff options
author | Devang Patel <dpatel@apple.com> | 2010-01-05 01:47:06 +0000 |
---|---|---|
committer | Devang Patel <dpatel@apple.com> | 2010-01-05 01:47:06 +0000 |
commit | 33f80d2303b524231dd1c5d057d3363ea94e8405 (patch) | |
tree | 55ff93267a5a7db76ec598022e1cac2b0f494b05 /llvm/lib/CodeGen/IntrinsicLowering.cpp | |
parent | 43ef34d2a5e3a88b2711aa168443c1b2bcb07fcd (diff) | |
download | bcm5719-llvm-33f80d2303b524231dd1c5d057d3363ea94e8405.tar.gz bcm5719-llvm-33f80d2303b524231dd1c5d057d3363ea94e8405.zip |
Delete renaming use of dead dbg intrinsics.
Intrinsic::dbg_stoppoint
Intrinsic::dbg_region_start
Intrinsic::dbg_region_end
Intrinsic::dbg_func_start
llvm-svn: 92672
Diffstat (limited to 'llvm/lib/CodeGen/IntrinsicLowering.cpp')
-rw-r--r-- | llvm/lib/CodeGen/IntrinsicLowering.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/llvm/lib/CodeGen/IntrinsicLowering.cpp b/llvm/lib/CodeGen/IntrinsicLowering.cpp index 8a3bd0bf4e0..3585df2dca1 100644 --- a/llvm/lib/CodeGen/IntrinsicLowering.cpp +++ b/llvm/lib/CodeGen/IntrinsicLowering.cpp @@ -427,10 +427,6 @@ void IntrinsicLowering::LowerIntrinsicCall(CallInst *CI) { break; } - case Intrinsic::dbg_stoppoint: - case Intrinsic::dbg_region_start: - case Intrinsic::dbg_region_end: - case Intrinsic::dbg_func_start: case Intrinsic::dbg_declare: break; // Simply strip out debugging intrinsics |