diff options
author | Chad Rosier <mcrosier@apple.com> | 2013-02-26 22:15:50 +0000 |
---|---|---|
committer | Chad Rosier <mcrosier@apple.com> | 2013-02-26 22:15:50 +0000 |
commit | 05e35566c8ef61ba175097077a8d6e6b4948f044 (patch) | |
tree | 03c5f1322bee83c1924eac8ebb80bbbdbe8f1d1f /clang/lib/Driver/Driver.cpp | |
parent | 828b8d241563476350f46e7d53fc11bd1476e596 (diff) | |
download | bcm5719-llvm-05e35566c8ef61ba175097077a8d6e6b4948f044.tar.gz bcm5719-llvm-05e35566c8ef61ba175097077a8d6e6b4948f044.zip |
No need to initialize these variables.
llvm-svn: 176128
Diffstat (limited to 'clang/lib/Driver/Driver.cpp')
-rw-r--r-- | clang/lib/Driver/Driver.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Driver/Driver.cpp b/clang/lib/Driver/Driver.cpp index 048c1540d3e..8229129055d 100644 --- a/clang/lib/Driver/Driver.cpp +++ b/clang/lib/Driver/Driver.cpp @@ -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)); |