r176128 - No need to initialize these variables.
Chad Rosier
mcrosier at apple.com
Tue Feb 26 14:15:50 PST 2013
Author: mcrosier
Date: Tue Feb 26 16:15:50 2013
New Revision: 176128
URL: http://llvm.org/viewvc/llvm-project?rev=176128&view=rev
Log:
No need to initialize these variables.
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=176128&r1=176127&r2=176128&view=diff
==============================================================================
--- cfe/trunk/lib/Driver/Driver.cpp (original)
+++ cfe/trunk/lib/Driver/Driver.cpp Tue Feb 26 16:15:50 2013
@@ -249,7 +249,7 @@ Compilation *Driver::BuildCompilation(Ar
// FIXME: What are we going to do with -V and -b?
// FIXME: This stuff needs to go into the Compilation, not the driver.
- bool CCCPrintOptions = false, CCCPrintActions = false;
+ bool CCCPrintOptions, CCCPrintActions;
InputArgList *Args = ParseArgStrings(ArgList.slice(1));
More information about the cfe-commits
mailing list