X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fbe%2Ftest%2Ffehler35.c;h=3801ef354c0d1e88de95de15cd5a08f242b5eb70;hb=72cfc8ba00e9264a8097aab45b37876013962b76;hp=6912af29963e5ece01ad3dfde2c99003c5001ac2;hpb=0792bf86212e92fecf16ad3018a20e7ad46616c7;p=libfirm diff --git a/ir/be/test/fehler35.c b/ir/be/test/fehler35.c index 6912af299..3801ef354 100644 --- a/ir/be/test/fehler35.c +++ b/ir/be/test/fehler35.c @@ -20,16 +20,7 @@ int compare_string(char *CompValue, char *ValuePtr) unsigned char *p0 = (unsigned char *)CompValue; unsigned char *p1 = (unsigned char *)ValuePtr; - /* Compare the string pointed to by CompValue - against string pointed to by ValuePtr */ -#if 0 - if (DeBug) - if (sprintf (Msg, " Ut_CompareString:: <%-24s> To <%-24s>;\n", - p0, p1)) - TraceMsg (0, Msg); -#endif - - for (i = 0; i == 0 && *p0 != NULL && *p1 != NULL; p0++, p1++) + for (i = 0; i == 0 && *p0 != '\0' && *p1 != '\0'; p0++, p1++) { if (*p0 != *p1) if (*p0 < *p1) @@ -38,20 +29,13 @@ int compare_string(char *CompValue, char *ValuePtr) i = 1; } - if (i == 0) + if (i == 0) if (*p0 != *p1) - if (*p0 == NULL) + if (*p0 == '\0') i = -1; else i = 1; -#if 0 - if (ClassBug && !SetBug) - if (sprintf (Msg, " Ut_Compare:: <%-16s> To <%-16s>; i = %d\n", - CompValue, ValuePtr, i)) - TraceMsg (0, Msg); -#endif - return(i); }