[mir] Fix uninitialized variable in r349035 noticed by clang-atom-d525-fedora-rel and 3 other bots

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@349043 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Daniel Sanders
2018-12-13 15:05:27 +00:00
parent c8712c4ca0
commit a20dcc7643
+1 -1
View File
@@ -1701,7 +1701,7 @@ bool MIParser::parseDILocation(MDNode *&Loc) {
unsigned Column = 0;
MDNode *Scope = nullptr;
MDNode *InlinedAt = nullptr;
bool ImplicitCode;
bool ImplicitCode = false;
if (expectAndConsume(MIToken::lparen))
return true;