r324430 - [NFC] Correct a typo'ed comment and reworded, since it is awkward.
Erich Keane via cfe-commits
cfe-commits at lists.llvm.org
Tue Feb 6 16:19:58 PST 2018
Author: erichkeane
Date: Tue Feb 6 16:19:58 2018
New Revision: 324430
URL: http://llvm.org/viewvc/llvm-project?rev=324430&view=rev
Log:
[NFC] Correct a typo'ed comment and reworded, since it is awkward.
Modified:
cfe/trunk/lib/Driver/Driver.cpp
Modified: cfe/trunk/lib/Driver/Driver.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Driver/Driver.cpp?rev=324430&r1=324429&r2=324430&view=diff
==============================================================================
--- cfe/trunk/lib/Driver/Driver.cpp (original)
+++ cfe/trunk/lib/Driver/Driver.cpp Tue Feb 6 16:19:58 2018
@@ -133,7 +133,7 @@ void Driver::ParseDriverMode(StringRef P
setDriverModeFromOption(ClangNameParts.DriverMode);
for (const char *ArgPtr : Args) {
- // Ingore nullptrs, they are response file's EOL markers
+ // Ignore nullptrs, they are the response file's EOL markers.
if (ArgPtr == nullptr)
continue;
const StringRef Arg = ArgPtr;
More information about the cfe-commits
mailing list