From 8425d988fec517b92d3a25a24aec20901a382e03 Mon Sep 17 00:00:00 2001 From: cuz Date: Sun, 6 Jun 2004 18:36:15 +0000 Subject: [PATCH] Removed debug code git-svn-id: svn://svn.cc65.org/cc65/trunk@3110 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- src/cc65/expr.c | 1 - 1 file changed, 1 deletion(-) 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; }