diff options
author | Kaveh R. Ghazi <ghazi@caip.rutgers.edu> | 2003-08-12 02:23:57 +0000 |
---|---|---|
committer | Kaveh Ghazi <ghazi@gcc.gnu.org> | 2003-08-12 02:23:57 +0000 |
commit | 4ac1102286d5622db427fc981f3f93a597447eb3 (patch) | |
tree | 1097b8197f27faf867c8c29462895239962070a3 /gcc/gcse.c | |
parent | ae351e1ea105b58f8249fac58d05059512877dac (diff) | |
download | gcc-4ac1102286d5622db427fc981f3f93a597447eb3.zip gcc-4ac1102286d5622db427fc981f3f93a597447eb3.tar.gz gcc-4ac1102286d5622db427fc981f3f93a597447eb3.tar.bz2 |
* gcse.c (gmalloc): Fix last change.
From-SVN: r70352
Diffstat (limited to 'gcc/gcse.c')
-rw-r--r-- | gcc/gcse.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); |