diff options
author | Manuel Klimek <klimek@google.com> | 2015-10-19 08:43:46 +0000 |
---|---|---|
committer | Manuel Klimek <klimek@google.com> | 2015-10-19 08:43:46 +0000 |
commit | ab2e28ebafa3f995bcad3f0bf061b622e1d494b5 (patch) | |
tree | a8df7f52690f0fbb671814b83dd28e155d719f47 /clang/lib/CodeGen | |
parent | 74ca428df7fc1e3ec19029afa4b189d19e9d43e1 (diff) | |
download | bcm5719-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.cpp | 4 |
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 { |