There is no need to value initialize this array.

llvm-svn: 75517
This commit is contained in:
Daniel Dunbar 2009-07-13 21:48:50 +00:00
parent a479bf1afa
commit 48b4d1e27e
1 changed files with 1 additions and 1 deletions

View File

@ -588,7 +588,7 @@ TryAgain:
// various pseudo-ops. Just return the # token and push back the following
// token to be lexed next time.
if (getLangOptions().AsmPreprocessor) {
Token *Toks = new Token[2]();
Token *Toks = new Token[2];
// Return the # and the token after it.
Toks[0] = SavedHash;
Toks[1] = Result;