Quieting a false-positive which was causing the sanitizer bots to go red.
llvm-svn: 210333
diff --git a/clang/lib/Sema/SemaStmtAttr.cpp b/clang/lib/Sema/SemaStmtAttr.cpp
index 4e3999b..5f73bc1 100644
--- a/clang/lib/Sema/SemaStmtAttr.cpp
+++ b/clang/lib/Sema/SemaStmtAttr.cpp
@@ -69,7 +69,7 @@
.Case("interleave_count", LoopHintAttr::InterleaveCount)
.Default(LoopHintAttr::Vectorize);
- int ValueInt;
+ int ValueInt = 0;
if (Option == LoopHintAttr::Vectorize || Option == LoopHintAttr::Interleave) {
if (!ValueInfo) {
S.Diag(ValueLoc->Loc, diag::err_pragma_loop_invalid_keyword)