diff options
| author | Zachary Turner <zturner@google.com> | 2017-03-15 19:54:25 +0000 |
|---|---|---|
| committer | Zachary Turner <zturner@google.com> | 2017-03-15 19:54:25 +0000 |
| commit | 43e3f97797a7ae37b086151d434878b6809400bc (patch) | |
| tree | f5a1c69e8df2a48bea37a47ab095391be87c958c /clang/lib | |
| parent | 193658578992477f53e5cc49e2c215002070f8e9 (diff) | |
| download | bcm5719-llvm-43e3f97797a7ae37b086151d434878b6809400bc.tar.gz bcm5719-llvm-43e3f97797a7ae37b086151d434878b6809400bc.zip | |
Fix uninitialized value.
llvm-svn: 297881
Diffstat (limited to 'clang/lib')
| -rw-r--r-- | clang/lib/Driver/ToolChains/MSVC.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Driver/ToolChains/MSVC.h b/clang/lib/Driver/ToolChains/MSVC.h index f11256d8f9c..055830c52e0 100644 --- a/clang/lib/Driver/ToolChains/MSVC.h +++ b/clang/lib/Driver/ToolChains/MSVC.h @@ -130,7 +130,7 @@ protected: Tool *buildAssembler() const override; private: std::string VCToolChainPath; - bool IsVS2017OrNewer; + bool IsVS2017OrNewer = false; CudaInstallationDetector CudaInstallation; }; |

