* gcse.c (gmalloc): Fix last change.
authorKaveh R. Ghazi <ghazi@caip.rutgers.edu>
Tue, 12 Aug 2003 02:23:57 +0000 (02:23 +0000)
committerKaveh Ghazi <ghazi@gcc.gnu.org>
Tue, 12 Aug 2003 02:23:57 +0000 (02:23 +0000)
From-SVN: r70352

gcc/ChangeLog
gcc/gcse.c

index 767c2d6..fdd3d97 100644 (file)
@@ -1,3 +1,7 @@
+2003-08-11  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
+
+       * gcse.c (gmalloc): Fix last change.
+
 2003-08-11  Roger Sayle  <roger@eyesopen.com>
 
        * simplify-rtx.c (simplify_binary_operation): Replace calls to
index 066747b..a09b7fd 100644 (file)
@@ -952,7 +952,7 @@ can_copy_p (enum machine_mode mode)
 /* Cover function to xmalloc to record bytes allocated.  */
 
 static void *
-gmalloc (unsigned int size)
+gmalloc (size_t size)
 {
   bytes_used += size;
   return xmalloc (size);