diff options
author | NAKAMURA Takumi <geek4civic@gmail.com> | 2011-10-08 11:31:53 +0000 |
---|---|---|
committer | NAKAMURA Takumi <geek4civic@gmail.com> | 2011-10-08 11:31:53 +0000 |
commit | 96e21710e8bf64514ca7d3720cb3b2823eec9164 (patch) | |
tree | 26baf683715c5ad402f1148b2232d234d6d18919 /lib/Parse/ParseStmt.cpp | |
parent | a789ca9b967abe47b84df83bcf4afb150856a8d9 (diff) |
Fix "Uninitialized" warnings.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@141487 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Parse/ParseStmt.cpp')
-rw-r--r-- | lib/Parse/ParseStmt.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Parse/ParseStmt.cpp b/lib/Parse/ParseStmt.cpp index 7754c9855d..22a1eb3744 100644 --- a/lib/Parse/ParseStmt.cpp +++ b/lib/Parse/ParseStmt.cpp @@ -1579,10 +1579,10 @@ StmtResult Parser::ParseMicrosoftAsmStatement(SourceLocation AsmLoc) { SourceLocation EndLoc = AsmLoc; do { bool InBraces = false; - unsigned short savedBraceCount; + unsigned short savedBraceCount = 0; bool InAsmComment = false; FileID FID; - unsigned LineNo; + unsigned LineNo = 0; unsigned NumTokensRead = 0; SourceLocation LBraceLoc; |