From 4a5ceb13c757a369dcf2e57013aff71c261e957b Mon Sep 17 00:00:00 2001 From: uz Date: Fri, 14 Aug 2009 18:32:11 +0000 Subject: [PATCH] Removed debug code git-svn-id: svn://svn.cc65.org/cc65/trunk@4003 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- src/cc65/coptsize.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/cc65/coptsize.c b/src/cc65/coptsize.c index ad384da64..facf6db33 100644 --- a/src/cc65/coptsize.c +++ b/src/cc65/coptsize.c @@ -229,8 +229,6 @@ unsigned OptSize1 (CodeSeg* S) /* Check if it's a subroutine call */ if (E->OPC == OP65_JSR && (D = FindCall (E->Arg)) != 0) { - printf ("Found \"%s\" for \"%s\"\n", D->LongFunc, D->ShortFunc); - /* FindCall finds the first entry that matches our function name. * The names are listed in "best match" order, so search for the * first one, that fulfills our conditions.