No need to initialize these variables.
authorChad Rosier <mcrosier@apple.com>
Tue, 26 Feb 2013 22:15:50 +0000 (22:15 +0000)
committerChad Rosier <mcrosier@apple.com>
Tue, 26 Feb 2013 22:15:50 +0000 (22:15 +0000)
llvm-svn: 176128

clang/lib/Driver/Driver.cpp

index 048c154..8229129 100644 (file)
@@ -249,7 +249,7 @@ Compilation *Driver::BuildCompilation(ArrayRef<const char *> ArgList) {
   // 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));