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 | bcf73c225324ecc227a88b35598ca809fcd1d5c8 (patch) | |
tree | bfb9d05a74be614ab9b5b7eed17e3baf4a070beb /lib/Driver/Driver.cpp | |
parent | 9db0fe97f533513f88e7141f0b2a405ebe86fa67 (diff) |
No need to initialize these variables.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@176128 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Driver/Driver.cpp')
-rw-r--r-- | lib/Driver/Driver.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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<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)); |