Now that the fix for the underlying operator precedence issue has been merged in (1b6c0f254e05), remove the workaround.

Closes [454].
This commit is contained in:
David Nadlinger
2011-04-22 22:07:30 +02:00

View File

@@ -782,14 +782,12 @@ void functionParameters(Loc loc, Scope *sc, TypeFunction *tf, Expressions *argum
void expToCBuffer(OutBuffer *buf, HdrGenState *hgs, Expression *e, enum PREC pr)
{
#if !IN_LLVM
#ifdef DEBUG
if (precedence[e->op] == PREC_zero)
printf("precedence not defined for token '%s'\n",Token::tochars[e->op]);
#endif
assert(precedence[e->op] != PREC_zero);
assert(pr != PREC_zero);
#endif
//if (precedence[e->op] == 0) e->dump(0);
if (precedence[e->op] < pr ||