CharLiteralParser::IsMultiChar was sometimes uninitialized.

llvm-svn: 77420
This commit is contained in:
Daniel Dunbar 2009-07-29 01:46:05 +00:00
parent 841f14b609
commit a444cc2fa8
1 changed files with 2 additions and 1 deletions

View File

@ -688,7 +688,8 @@ CharLiteralParser::CharLiteralParser(const char *begin, const char *end,
else
PP.Diag(Loc, diag::ext_four_char_character_literal);
IsMultiChar = true;
}
} else
IsMultiChar = false;
// Transfer the value from APInt to uint64_t
Value = LitVal.getZExtValue();