From: johanknol Date: Fri, 2 Nov 2001 11:49:07 +0000 (+0000) Subject: Why did I do this in 1.100 ?????? X-Git-Url: https://git.gag.com/?a=commitdiff_plain;h=590782c31bee8e00da674dd2edf903fe950d9119;p=fw%2Fsdcc Why did I do this in 1.100 ?????? git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@1486 4a8a32a2-be11-0410-ad9d-d568d2c75423 --- diff --git a/src/SDCCsymt.c b/src/SDCCsymt.c index cf620057..35b18b01 100644 --- a/src/SDCCsymt.c +++ b/src/SDCCsymt.c @@ -1935,43 +1935,43 @@ printTypeChain (sym_link * start, FILE * of) case GPOINTER: if (DCL_PTR_CONST (type)) fprintf (of, "const "); - fprintf (of, "* generic "); + fprintf (of, "generic * "); break; case CPOINTER: if (DCL_PTR_CONST (type)) fprintf (of, "const "); - fprintf (of, "* code "); + fprintf (of, "code * "); break; case FPOINTER: if (DCL_PTR_CONST (type)) fprintf (of, "const "); - fprintf (of, "* xdata "); + fprintf (of, "xdata * "); break; case EEPPOINTER: if (DCL_PTR_CONST (type)) fprintf (of, "const "); - fprintf (of, "* eeprom "); + fprintf (of, "eeprom * "); break; case POINTER: if (DCL_PTR_CONST (type)) fprintf (of, "const "); - fprintf (of, "* near "); + fprintf (of, "near *"); break; case IPOINTER: if (DCL_PTR_CONST (type)) fprintf (of, "const "); - fprintf (of, "* idata "); + fprintf (of, "idata * "); break; case PPOINTER: if (DCL_PTR_CONST (type)) fprintf (of, "const "); - fprintf (of, "* pdata "); + fprintf (of, "pdata * "); break; case UPOINTER: if (DCL_PTR_CONST (type)) fprintf (of, "const "); - fprintf (of, "* unkown "); + fprintf (of, "unkown * "); break; case ARRAY: fprintf (of, "[] ");