mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-13 20:32:21 +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;
|
||||
BasicBlock* BB;
|
||||
|
||||
CaseRange(Constant *low = nullptr, Constant *high = nullptr,
|
||||
BasicBlock *bb = nullptr) :
|
||||
Low(low), High(high), BB(bb) { }
|
||||
CaseRange(Constant *low, Constant *high, BasicBlock *bb)
|
||||
: Low(low), High(high), BB(bb) {}
|
||||
};
|
||||
|
||||
typedef std::vector<CaseRange> CaseVector;
|
||||
|
Loading…
Reference in New Issue
Block a user