forked from OSchip/llvm-project
There is no need to value initialize this array.
llvm-svn: 75517
This commit is contained in:
parent
a479bf1afa
commit
48b4d1e27e
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue