if (Tok.getKind() == tok::equal ||
Tok.getKind() == tok::equalequal)
return true;
- ConcatInfo &= ~ConcatInfo;
+ ConcatInfo &= ~aci_avoid_equal;
}
if (ConcatInfo == 0) return false;
} else if (Tok.hasLeadingSpace() ||
// If we haven't emitted a token on this line yet, PrevTok isn't
// useful to look at and no concatenation could happen anyway.
- (!Callbacks->hasEmittedTokensOnThisLine() &&
+ (Callbacks->hasEmittedTokensOnThisLine() &&
// Don't print "-" next to "-", it would form "--".
Callbacks->AvoidConcat(PrevTok, Tok))) {
OutputChar(' ');