From: Chad Rosier Date: Tue, 26 Feb 2013 22:15:50 +0000 (+0000) Subject: No need to initialize these variables. X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=05e35566c8ef61ba175097077a8d6e6b4948f044;p=platform%2Fupstream%2Fllvm.git No need to initialize these variables. llvm-svn: 176128 --- diff --git a/clang/lib/Driver/Driver.cpp b/clang/lib/Driver/Driver.cpp index 048c154..8229129 100644 --- a/clang/lib/Driver/Driver.cpp +++ b/clang/lib/Driver/Driver.cpp @@ -249,7 +249,7 @@ Compilation *Driver::BuildCompilation(ArrayRef 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));