summaryrefslogtreecommitdiffstats
path: root/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2011-10-05 22:24:35 +0000
committerBill Wendling <isanbard@gmail.com>2011-10-05 22:24:35 +0000
commit267f323d28aad590ccde7806bf35f11511760a58 (patch)
tree64e88bfeaf5a3fb073880c8870ae18ef2edbaf11 /llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
parent5cf58b9ba062803cdb3fa5464c195d4ec3a08cf4 (diff)
downloadbcm5719-llvm-267f323d28aad590ccde7806bf35f11511760a58.tar.gz
bcm5719-llvm-267f323d28aad590ccde7806bf35f11511760a58.zip
Modify the mapping from landing pad to call sites to accept more than one call
site. llvm-svn: 141226
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp')
-rw-r--r--llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
index b6fb978e6b4..68b9146adfe 100644
--- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
+++ b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
@@ -691,6 +691,9 @@ void SelectionDAGISel::PrepareEHLandingPad() {
// landing pad can thus be detected via the MachineModuleInfo.
MCSymbol *Label = MF->getMMI().addLandingPad(MBB);
+ // Assign the call site to the landing pad's begin label.
+ MF->getMMI().setCallSiteLandingPad(Label, SDB->LPadToCallSiteMap[MBB]);
+
const MCInstrDesc &II = TM.getInstrInfo()->get(TargetOpcode::EH_LABEL);
BuildMI(*MBB, FuncInfo->InsertPt, SDB->getCurDebugLoc(), II)
.addSym(Label);
OpenPOWER on IntegriCloud