mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-15 05:24:01 +00:00
Unbreak VC++ build. Do not use identifiers starting with _ as they are reserved and
can collide with system defined names. Windows defines _BB, for example. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@35066 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -46,9 +46,9 @@ namespace {
|
|||||||
Constant* High;
|
Constant* High;
|
||||||
BasicBlock* BB;
|
BasicBlock* BB;
|
||||||
|
|
||||||
CaseRange(Constant* _Low = NULL, Constant* _High = NULL,
|
CaseRange() : Low(0), High(0), BB(0) { }
|
||||||
BasicBlock* _BB = NULL):
|
CaseRange(Constant* low, Constant* high, BasicBlock* bb) :
|
||||||
Low(_Low), High(_High), BB(_BB) { }
|
Low(low), High(high), BB(bb) { }
|
||||||
};
|
};
|
||||||
|
|
||||||
typedef std::vector<CaseRange> CaseVector;
|
typedef std::vector<CaseRange> CaseVector;
|
||||||
|
Reference in New Issue
Block a user