From: Eric Christopher Date: Tue, 8 Dec 2015 00:10:10 +0000 (+0000) Subject: Update comment. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=898cd5836013faa9dd2ba7b825b23b354cffb30b;p=clang Update comment. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@254972 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Driver/Tools.cpp b/lib/Driver/Tools.cpp index 7025314c69..90d81b941f 100644 --- a/lib/Driver/Tools.cpp +++ b/lib/Driver/Tools.cpp @@ -6639,11 +6639,11 @@ void darwin::Assembler::ConstructJob(Compilation &C, const JobAction &JA, SourceAction = SourceAction->getInputs()[0]; } - // If -fno_integrated_as is used add -Q to the darwin assember driver to make + // If -fno-integrated-as is used add -Q to the darwin assember driver to make // sure it runs its system assembler not clang's integrated assembler. // Applicable to darwin11+ and Xcode 4+. darwin<10 lacked integrated-as. // FIXME: at run-time detect assembler capabilities or rely on version - // information forwarded by -target-assembler-version (future) + // information forwarded by -target-assembler-version. if (Args.hasArg(options::OPT_fno_integrated_as)) { const llvm::Triple &T(getToolChain().getTriple()); if (!(T.isMacOSX() && T.isMacOSXVersionLT(10, 7)))