aboutsummaryrefslogtreecommitdiff
path: root/gcc/cpplex.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/cpplex.c')
-rw-r--r--gcc/cpplex.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/cpplex.c b/gcc/cpplex.c
index 3ff23b4..b23e56f 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);