From 7802d4664dfa9c32a1e3e66177f841cdc0b0e0e8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pavel=20Ka=C5=88kovsk=C3=BD?= Date: Fri, 23 Jun 2000 04:18:55 +0000 Subject: [PATCH] *top++-bug was not a compiler bug, therefore the comment about the affected compiler was misleading and has been removed --- src/type1/t1gload.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/type1/t1gload.c b/src/type1/t1gload.c index a7dbbb5f9..b0e6cfe72 100644 --- a/src/type1/t1gload.c +++ b/src/type1/t1gload.c @@ -831,10 +831,6 @@ case op_div: if (top[1]) { - /* this code was originally "*top++ = top[1]/top[0]" */ - /* however, it didn't run correctly on IRIX 6.5 using */ - /* the MISPRO 7.2 compiler suite. The following code */ - /* should run flawlessly.. */ *top = top[0] / top[1]; ++top; }