From 498f6d3f67808b0100f57c084d9c30d3e7287537 Mon Sep 17 00:00:00 2001 From: neil Date: Sat, 3 Feb 2001 17:52:31 +0000 Subject: * cpphash.h: Rename ALIGN _ALIGN. * cpplex.c (new_chunk, _cpp_pool_reserve): Update. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@39433 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/cpplex.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gcc/cpplex.c') diff --git a/gcc/cpplex.c b/gcc/cpplex.c index 3ff23b4abac..b23e56fcdfd 100644 --- a/gcc/cpplex.c +++ b/gcc/cpplex.c @@ -1759,7 +1759,7 @@ new_chunk (size) unsigned char *base; cpp_chunk *result; - size = ALIGN (size, DEFAULT_ALIGNMENT); + size = _ALIGN (size, DEFAULT_ALIGNMENT); base = (unsigned char *) xmalloc (size + sizeof (cpp_chunk)); /* Put the chunk descriptor at the end. Then chunk overruns will cause obvious chaos. */ @@ -1826,7 +1826,7 @@ _cpp_pool_reserve (pool, len) cpp_pool *pool; unsigned int len; { - len = ALIGN (len, pool->align); + len = _ALIGN (len, pool->align); if (len > (unsigned int) POOL_ROOM (pool)) _cpp_next_chunk (pool, len, 0); -- cgit v1.2.1