forked from OSchip/llvm-project
Initialize boolean variables in MipsSubtarget's constructor.
llvm-svn: 164642
This commit is contained in:
parent
d9f7910671
commit
a9d01f1b99
|
@ -31,7 +31,8 @@ MipsSubtarget::MipsSubtarget(const std::string &TT, const std::string &CPU,
|
|||
MipsArchVersion(Mips32), MipsABI(UnknownABI), IsLittle(little),
|
||||
IsSingleFloat(false), IsFP64bit(false), IsGP64bit(false), HasVFPU(false),
|
||||
IsLinux(true), HasSEInReg(false), HasCondMov(false), HasMulDivAdd(false),
|
||||
HasMinMax(false), HasSwap(false), HasBitCount(false), InMips16Mode(false)
|
||||
HasMinMax(false), HasSwap(false), HasBitCount(false), InMips16Mode(false),
|
||||
HasDSP(false), HasDSPR2(false), IsAndroid(false)
|
||||
{
|
||||
std::string CPUName = CPU;
|
||||
if (CPUName.empty())
|
||||
|
|
Loading…
Reference in New Issue