]> granicus.if.org Git - clang/commitdiff
Fix 'will be initialized after' warning.
authorManuel Klimek <klimek@google.com>
Mon, 19 Oct 2015 08:43:46 +0000 (08:43 +0000)
committerManuel Klimek <klimek@google.com>
Mon, 19 Oct 2015 08:43:46 +0000 (08:43 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@250691 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/TargetInfo.cpp

index 4b31a1355ee0d5855096f7837d1b7a4b12cb0c90..f76fad16cc289c0456678e6e6dc4d3df4d1274a6 100644 (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 {