From: Chad Rosier Date: Tue, 26 Feb 2013 22:15:50 +0000 (+0000) Subject: No need to initialize these variables. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=bcf73c225324ecc227a88b35598ca809fcd1d5c8;p=clang No need to initialize these variables. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@176128 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Driver/Driver.cpp b/lib/Driver/Driver.cpp index 048c1540d3..8229129055 100644 --- a/lib/Driver/Driver.cpp +++ b/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));