Fix 'will be initialized after' warning.

llvm-svn: 250691
This commit is contained in:
Manuel Klimek 2015-10-19 08:43:46 +00:00
parent 74ca428df7
commit ab2e28ebaf
1 changed files with 2 additions and 2 deletions

View File

@ -852,8 +852,8 @@ public:
: ABIInfo(CGT), IsDarwinVectorABI(DarwinVectorABI),
IsRetSmallStructInRegABI(RetSmallStructInRegABI),
IsWin32StructABI(Win32StructABI),
DefaultNumRegisterParameters(NumRegisterParameters),
IsSoftFloatABI(SoftFloatABI) {}
IsSoftFloatABI(SoftFloatABI),
DefaultNumRegisterParameters(NumRegisterParameters) {}
};
class X86_32TargetCodeGenInfo : public TargetCodeGenInfo {