* gcse.c (gmalloc): Fix last change.

From-SVN: r70352
This commit is contained in:
Kaveh R. Ghazi 2003-08-12 02:23:57 +00:00 committed by Kaveh Ghazi
parent ae351e1ea1
commit 4ac1102286
2 changed files with 5 additions and 1 deletions

View 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

View 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);