From: Duncan P. N. Exon Smith Date: Thu, 20 Mar 2014 18:40:53 +0000 (+0000) Subject: Coding style fixup; no functionality change X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=35f8aac3a848e9e25cee06562f6bd216f2ec1b9f;p=clang Coding style fixup; no functionality change git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@204371 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Driver/ToolChains.cpp b/lib/Driver/ToolChains.cpp index b0ea47bd86..03c49e357a 100644 --- a/lib/Driver/ToolChains.cpp +++ b/lib/Driver/ToolChains.cpp @@ -326,11 +326,10 @@ void DarwinClang::AddLinkRuntimeLibArgs(const ArgList &Args, Args.hasArg(options::OPT_fcreate_profile) || Args.hasArg(options::OPT_coverage)) { // Select the appropriate runtime library for the target. - if (isTargetIOSBased()) { + if (isTargetIOSBased()) AddLinkRuntimeLib(Args, CmdArgs, "libclang_rt.profile_ios.a"); - } else { + else AddLinkRuntimeLib(Args, CmdArgs, "libclang_rt.profile_osx.a"); - } } const SanitizerArgs &Sanitize = getSanitizerArgs();