From: Eric Christopher Date: Sat, 4 Apr 2015 03:34:43 +0000 (+0000) Subject: Complete comment. Reflow conditional. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=98ecad7a11dbc367cd606a76cecd3b862062e397;p=clang Complete comment. Reflow conditional. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@234083 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Driver/Tools.cpp b/lib/Driver/Tools.cpp index d96c294581..6f8751d5ca 100644 --- a/lib/Driver/Tools.cpp +++ b/lib/Driver/Tools.cpp @@ -750,9 +750,8 @@ static void getARMTargetFeatures(const Driver &D, const llvm::Triple &Triple, Features.push_back("-crypto"); } - // En/disable crc - if (Arg *A = Args.getLastArg(options::OPT_mcrc, - options::OPT_mnocrc)) { + // En/disable crc code generation. + if (Arg *A = Args.getLastArg(options::OPT_mcrc, options::OPT_mnocrc)) { if (A->getOption().matches(options::OPT_mcrc)) Features.push_back("+crc"); else