diff options
author | Bill Wendling <isanbard@gmail.com> | 2011-10-05 22:24:35 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2011-10-05 22:24:35 +0000 |
commit | 30e6740f2e3d518ce1cfcd484ef728ac5764a645 (patch) | |
tree | c558699cb0ff2c6bc01e16d95311b4283ab7a049 /lib/CodeGen/SelectionDAG/SelectionDAGBuilder.h | |
parent | 84fb7dd09e35ee7d32f9d1d88f7dbc3dc706ad7d (diff) |
Modify the mapping from landing pad to call sites to accept more than one call
site.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@141226 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/SelectionDAG/SelectionDAGBuilder.h')
-rw-r--r-- | lib/CodeGen/SelectionDAG/SelectionDAGBuilder.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.h b/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.h index 521e4d3938..461677f8bf 100644 --- a/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.h +++ b/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.h @@ -320,8 +320,8 @@ public: /// GFI - Garbage collection metadata for the function. GCFunctionInfo *GFI; - /// LPadToBeginLabelMap - Map a landing pad to the begin label. - DenseMap<MachineBasicBlock*, unsigned> LPadToCallSiteMap; + /// LPadToCallSiteMap - Map a landing pad to the call site indexes. + DenseMap<MachineBasicBlock*, SmallVector<unsigned, 4> > LPadToCallSiteMap; /// HasTailCall - This is set to true if a call in the current /// block has been translated as a tail call. In this case, |