diff options
author | Jim Laskey <jlaskey@mac.com> | 2007-03-01 20:24:30 +0000 |
---|---|---|
committer | Jim Laskey <jlaskey@mac.com> | 2007-03-01 20:24:30 +0000 |
commit | 0b4711bd94e0723735848ad999bccfb1fb61eeb9 (patch) | |
tree | 4a9700d310f0a8464321a1b6a61cd673382275c7 /lib | |
parent | c3c1ca0f9cc02c6e076fd3630b085ea557e12735 (diff) | |
download | external_llvm-0b4711bd94e0723735848ad999bccfb1fb61eeb9.zip external_llvm-0b4711bd94e0723735848ad999bccfb1fb61eeb9.tar.gz external_llvm-0b4711bd94e0723735848ad999bccfb1fb61eeb9.tar.bz2 |
Lower eh filter intrinsic.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@34802 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r-- | lib/CodeGen/IntrinsicLowering.cpp | 1 | ||||
-rw-r--r-- | lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp | 5 |
2 files changed, 5 insertions, 1 deletions
diff --git a/lib/CodeGen/IntrinsicLowering.cpp b/lib/CodeGen/IntrinsicLowering.cpp index 09709fe..3cfa436 100644 --- a/lib/CodeGen/IntrinsicLowering.cpp +++ b/lib/CodeGen/IntrinsicLowering.cpp @@ -358,6 +358,7 @@ void IntrinsicLowering::LowerIntrinsicCall(CallInst *CI) { case Intrinsic::dbg_declare: case Intrinsic::eh_exception: case Intrinsic::eh_selector: + case Intrinsic::eh_filter: break; // Simply strip out debugging and eh intrinsics case Intrinsic::memcpy_i32: diff --git a/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp b/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp index 57e32b3..afaf782 100644 --- a/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp +++ b/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp @@ -2110,7 +2110,8 @@ SelectionDAGLowering::visitIntrinsicCall(CallInst &I, unsigned Intrinsic) { return 0; } - case Intrinsic::eh_selector: { + case Intrinsic::eh_selector: + case Intrinsic::eh_filter:{ MachineModuleInfo *MMI = DAG.getMachineModuleInfo(); if (MMI) { @@ -2120,6 +2121,8 @@ SelectionDAGLowering::visitIntrinsicCall(CallInst &I, unsigned Intrinsic) { isa<Function>(CE->getOperand(0)) && "Personality should be a function"); MMI->addPersonality(CurMBB, cast<Function>(CE->getOperand(0))); + if (Intrinsic == Intrinsic::eh_filter) + MMI->setIsFilterLandingPad(CurMBB); // Gather all the type infos for this landing pad and pass them along to // MachineModuleInfo. |