From: Manuel Klimek Date: Mon, 19 Oct 2015 08:43:46 +0000 (+0000) Subject: Fix 'will be initialized after' warning. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=399dec9fb9828420a734df5ca564677df5393596;p=clang Fix 'will be initialized after' warning. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@250691 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/TargetInfo.cpp b/lib/CodeGen/TargetInfo.cpp index 4b31a1355e..f76fad16cc 100644 --- a/lib/CodeGen/TargetInfo.cpp +++ b/lib/CodeGen/TargetInfo.cpp @@ -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 {