mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-25 04:02:41 +01:00
Initialize boolean variables in MipsSubtarget's constructor.
llvm-svn: 164642
This commit is contained in:
parent
f44573ac9b
commit
321052ce8c
@ -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
Block a user