Commit 4ac11022 by Kaveh R. Ghazi Committed by Kaveh Ghazi

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

From-SVN: r70352
parent ae351e1e
2003-08-11 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* gcse.c (gmalloc): Fix last change.
2003-08-11 Roger Sayle <roger@eyesopen.com> 2003-08-11 Roger Sayle <roger@eyesopen.com>
* simplify-rtx.c (simplify_binary_operation): Replace calls to * simplify-rtx.c (simplify_binary_operation): Replace calls to
......
...@@ -952,7 +952,7 @@ can_copy_p (enum machine_mode mode) ...@@ -952,7 +952,7 @@ can_copy_p (enum machine_mode mode)
/* Cover function to xmalloc to record bytes allocated. */ /* Cover function to xmalloc to record bytes allocated. */
static void * static void *
gmalloc (unsigned int size) gmalloc (size_t size)
{ {
bytes_used += size; bytes_used += size;
return xmalloc (size); return xmalloc (size);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment