$OpenBSD: patch-gcc_fold-const_c,v 1.1.1.1 2005/01/03 15:21:26 espie Exp $
--- gcc/fold-const.c.orig	Sun Aug  8 20:55:28 2004
+++ gcc/fold-const.c	Mon Jan  3 10:17:42 2005
@@ -1036,7 +1036,11 @@ int_const_binop (code, arg1, arg2, notru
     = (TREE_CODE (type) == INTEGER_TYPE && TYPE_IS_SIZETYPE (type));
   int overflow = 0;
   int no_overflow = 0;
+  int sizeof_flag = 0;
 
+  if (SIZEOF_PTR_DERIVED (arg1) == 1 || SIZEOF_PTR_DERIVED (arg2) == 1)
+    sizeof_flag = 1;
+
   int1l = TREE_INT_CST_LOW (arg1);
   int1h = TREE_INT_CST_HIGH (arg1);
   int2l = TREE_INT_CST_LOW (arg2);
@@ -1203,6 +1207,10 @@ int_const_binop (code, arg1, arg2, notru
   TREE_CONSTANT_OVERFLOW (t) = (TREE_OVERFLOW (t)
 				| TREE_CONSTANT_OVERFLOW (arg1)
 				| TREE_CONSTANT_OVERFLOW (arg2));
+
+  if (sizeof_flag == 1)
+    SIZEOF_PTR_DERIVED (t) = 1;
+
   return t;
 }
 
@@ -5039,6 +5047,9 @@ fold (expr)
 		   | force_fit_type (t, overflow && !TREE_UNSIGNED (type)));
 	      TREE_CONSTANT_OVERFLOW (t)
 		= TREE_OVERFLOW (t) | TREE_CONSTANT_OVERFLOW (arg0);
+              /* If arg0 was calculated from sizeof(ptr), record this */
+              if (SIZEOF_PTR_DERIVED (arg0))
+                SIZEOF_PTR_DERIVED (t) = 1;
 	    }
 	  else if (TREE_CODE (arg0) == REAL_CST)
 	    t = build_real (type, REAL_VALUE_NEGATE (TREE_REAL_CST (arg0)));
@@ -5082,6 +5093,9 @@ fold (expr)
 		       | force_fit_type (t, overflow));
 		  TREE_CONSTANT_OVERFLOW (t)
 		    = TREE_OVERFLOW (t) | TREE_CONSTANT_OVERFLOW (arg0);
+                  /* If arg0 was calculated from sizeof(ptr), record this */
+                  if (SIZEOF_PTR_DERIVED (arg0))
+                    SIZEOF_PTR_DERIVED (t) = 1;
 		}
 	    }
 	  else if (TREE_CODE (arg0) == REAL_CST)
