mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-06 09:44:39 +00:00
Fix some clang warnings in WinEHPrepare
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@231985 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
70992ac969
commit
d24c2c8cdf
@ -261,8 +261,8 @@ private:
|
||||
class CatchHandler : public ActionHandler {
|
||||
public:
|
||||
CatchHandler(BasicBlock *BB, Constant *Selector, BasicBlock *NextBB)
|
||||
: Selector(Selector), NextBB(NextBB), ExceptionObjectVar(nullptr),
|
||||
ActionHandler(BB, ActionType::Catch) {}
|
||||
: ActionHandler(BB, ActionType::Catch), Selector(Selector),
|
||||
NextBB(NextBB), ExceptionObjectVar(nullptr) {}
|
||||
|
||||
// Method for support type inquiry through isa, cast, and dyn_cast:
|
||||
static inline bool classof(const ActionHandler *H) {
|
||||
@ -1140,7 +1140,6 @@ void WinEHPrepare::mapLandingPadBlocks(LandingPadInst *LPad,
|
||||
VisitedBlockSet VisitedBlocks;
|
||||
|
||||
while (HandlersFound != NumClauses) {
|
||||
Constant *Selector = nullptr;
|
||||
BasicBlock *NextBB = nullptr;
|
||||
|
||||
// See if the clause we're looking for is a catch-all.
|
||||
|
Loading…
x
Reference in New Issue
Block a user