From c4d4682f75f609d63f1b86cc36c901da5c5c7ea3 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Henrik=20Grubbstr=C3=B6m=20=28Grubba=29?=
 <grubba@grubba.org>
Date: Sat, 6 Jun 1998 15:50:44 +0200
Subject: [PATCH] Added workaround for bug in OSF/1 cc. Sometimes it seems to
 forget to clear the upper 32 bits when pushing an int.

Rev: src/language.yacc:1.98
---
 src/language.yacc | 9 +++++++--
 1 file changed, 7 insertions(+), 2 deletions(-)

diff --git a/src/language.yacc b/src/language.yacc
index 8ef81e842e..3cc1a30ea2 100644
--- a/src/language.yacc
+++ b/src/language.yacc
@@ -179,7 +179,7 @@
 /* This is the grammar definition of Pike. */
 
 #include "global.h"
-RCSID("$Id: language.yacc,v 1.97 1998/05/20 02:14:28 hubbe Exp $");
+RCSID("$Id: language.yacc,v 1.98 1998/06/06 13:50:44 grubba Exp $");
 #ifdef HAVE_MEMORY_H
 #include <memory.h>
 #endif
@@ -1136,8 +1136,13 @@ lambda: F_LAMBDA
 
     sprintf(buf,"__lambda_%ld_%ld",
 	    (long)new_program->id,
-	    local_class_counter++);
+	    (long)(local_class_counter++ & 0xffffffff)); /* OSF/1 cc bug. */
     name=make_shared_string(buf);
+
+#ifdef LAMBDA_DEBUG
+    fprintf(stderr, "%d: LAMBDA: %s 0x%08lx 0x%08lx\n",
+	    compiler_pass, buf, (long)new_program->id, local_class_counter-1);
+#endif /* LAMBDA_DEBUG */
     
     f=dooptcode(name,
 		$4,
-- 
GitLab