summaryrefslogtreecommitdiffstats
path: root/clang/lib/CodeGen
diff options
context:
space:
mode:
authorManuel Klimek <klimek@google.com>2015-10-19 08:43:46 +0000
committerManuel Klimek <klimek@google.com>2015-10-19 08:43:46 +0000
commitab2e28ebafa3f995bcad3f0bf061b622e1d494b5 (patch)
treea8df7f52690f0fbb671814b83dd28e155d719f47 /clang/lib/CodeGen
parent74ca428df7fc1e3ec19029afa4b189d19e9d43e1 (diff)
downloadbcm5719-llvm-ab2e28ebafa3f995bcad3f0bf061b622e1d494b5.tar.gz
bcm5719-llvm-ab2e28ebafa3f995bcad3f0bf061b622e1d494b5.zip
Fix 'will be initialized after' warning.
llvm-svn: 250691
Diffstat (limited to 'clang/lib/CodeGen')
-rw-r--r--clang/lib/CodeGen/TargetInfo.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/lib/CodeGen/TargetInfo.cpp b/clang/lib/CodeGen/TargetInfo.cpp
index 4b31a1355ee..f76fad16cc2 100644
--- a/clang/lib/CodeGen/TargetInfo.cpp
+++ b/clang/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 {
OpenPOWER on IntegriCloud