From: kvigor Date: Tue, 30 Jan 2001 18:02:51 +0000 (+0000) Subject: I must be smoking crack; removed several debug printfs left on in last commit. X-Git-Url: https://git.gag.com/?a=commitdiff_plain;h=abc116675c6d704947e9491db710c9af7c5d18b4;p=fw%2Fsdcc I must be smoking crack; removed several debug printfs left on in last commit. git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@549 4a8a32a2-be11-0410-ad9d-d568d2c75423 --- diff --git a/src/SDCCast.c b/src/SDCCast.c index 7fd9cfca..347fcace 100644 --- a/src/SDCCast.c +++ b/src/SDCCast.c @@ -593,13 +593,10 @@ int processParms (ast *func, value *defParm, { ast *newType = NULL; - printf("oogie "); - if (IS_CAST_OP(actParm) || (IS_AST_LIT_VALUE(actParm) && actParm->values.literalFromCast)) { /* Parameter was explicitly typecast; don't touch it. */ - printf("typecast.\n"); return 0; } @@ -632,14 +629,7 @@ int processParms (ast *func, value *defParm, actParm->left = newType; actParm->right= parmCopy; decorateType(actParm); - - printf("boogie\n"); } - else - { - printf("nada\n"); - } - return 0; }