Fix indentation.

This is an attempt to fix a failing bot:

http://lab.llvm.org:8011/builders/ubuntu-gcc7.1-werror

llvm-svn: 306944
This commit is contained in:
Akira Hatanaka 2017-07-01 04:37:54 +00:00
parent 080118351b
commit 1c2710fab3
1 changed files with 7 additions and 7 deletions

View File

@ -1342,13 +1342,13 @@ void Darwin::AddDeploymentTarget(DerivedArgList &Args) const {
HadExtra || Major >= 100 || Minor >= 100 || Micro >= 100) HadExtra || Major >= 100 || Minor >= 100 || Micro >= 100)
getDriver().Diag(diag::err_drv_invalid_version_number) getDriver().Diag(diag::err_drv_invalid_version_number)
<< iOSVersion->getAsString(Args); << iOSVersion->getAsString(Args);
// iOS 10 is the maximum deployment target for 32-bit targets. If the // iOS 10 is the maximum deployment target for 32-bit targets. If the
// inferred deployment target is iOS 11 or later, set it to 10.99. // inferred deployment target is iOS 11 or later, set it to 10.99.
if (getTriple().isArch32Bit() && Major >= 11) { if (getTriple().isArch32Bit() && Major >= 11) {
Major = 10; Major = 10;
Minor = 99; Minor = 99;
Micro = 99; Micro = 99;
} }
} else if (Platform == TvOS) { } else if (Platform == TvOS) {
if (!Driver::GetReleaseVersion(TvOSVersion->getValue(), Major, Minor, if (!Driver::GetReleaseVersion(TvOSVersion->getValue(), Major, Minor,
Micro, HadExtra) || HadExtra || Micro, HadExtra) || HadExtra ||