diff --git a/src/cc65/expr.c b/src/cc65/expr.c index 8c14817de..6c537536d 100644 --- a/src/cc65/expr.c +++ b/src/cc65/expr.c @@ -778,7 +778,6 @@ static void Primary (ExprDesc* E) E->FVal = CurTok.FVal; E->Flags = E_LOC_ABS | E_RTYPE_RVAL; E->Type = CurTok.Type; - printf ("Floating point constant: %f\n", E->FVal); NextToken (); return; }