mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-22 13:29:44 +00:00
LowerSwitch: remove default args from CaseRange ctor; NFC
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@228311 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
586cbe8d49
commit
5243154a6a
@ -71,9 +71,8 @@ namespace {
|
|||||||
Constant* High;
|
Constant* High;
|
||||||
BasicBlock* BB;
|
BasicBlock* BB;
|
||||||
|
|
||||||
CaseRange(Constant *low = nullptr, Constant *high = nullptr,
|
CaseRange(Constant *low, Constant *high, BasicBlock *bb)
|
||||||
BasicBlock *bb = nullptr) :
|
: Low(low), High(high), BB(bb) {}
|
||||||
Low(low), High(high), BB(bb) { }
|
|
||||||
};
|
};
|
||||||
|
|
||||||
typedef std::vector<CaseRange> CaseVector;
|
typedef std::vector<CaseRange> CaseVector;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user