aboutsummaryrefslogtreecommitdiff
path: root/gcc/cpplex.c
diff options
context:
space:
mode:
authorNeil Booth <neil@daikokuya.demon.co.uk>2001-02-03 17:52:31 +0000
committerNeil Booth <neil@gcc.gnu.org>2001-02-03 17:52:31 +0000
commit2da6090f5ee17e8f97ba8bacc6acc5b040bf75ea (patch)
tree86062db6fc94a267a6b9243f4594ef66a8745a99 /gcc/cpplex.c
parent01075bcbd812db4b703e8998646ac315e05384cc (diff)
downloadgcc-2da6090f5ee17e8f97ba8bacc6acc5b040bf75ea.zip
gcc-2da6090f5ee17e8f97ba8bacc6acc5b040bf75ea.tar.gz
gcc-2da6090f5ee17e8f97ba8bacc6acc5b040bf75ea.tar.bz2
cpphash.h: Rename ALIGN _ALIGN.
* cpphash.h: Rename ALIGN _ALIGN. * cpplex.c (new_chunk, _cpp_pool_reserve): Update. From-SVN: r39433
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);