From: Jim Wilson Date: Wed, 22 Oct 1997 01:16:10 +0000 (+0000) Subject: Fix typo in last obstack.h change. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=c1e385dbd186ebe3f9649323551d26bd3ea25c00;p=gcc.git Fix typo in last obstack.h change. * obstack.h (obstack_empty_p): Fix spurious space after backslash. From-SVN: r16144 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index aeac9b9abc0..8b80c2e95af 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +Tue Oct 21 18:14:03 1997 Jim Wilson + + * obstack.h (obstack_empty_p): Fix spurious space after backslash. + Tue Oct 21 18:34:01 1997 Geoffrey KEATING * rs6000.c: Avoid creating a stack frame under SYSV ABI if we diff --git a/gcc/obstack.h b/gcc/obstack.h index 1b172acab27..461a11d9337 100644 --- a/gcc/obstack.h +++ b/gcc/obstack.h @@ -465,7 +465,7 @@ __extension__ \ #define obstack_room(h) \ (unsigned) ((h)->chunk_limit - (h)->next_free) -#define obstack_empty_p(h) \ +#define obstack_empty_p(h) \ ((h)->chunk->prev == 0 && (h)->next_free - (h)->chunk->contents == 0) /* Note that the call to _obstack_newchunk is enclosed in (..., 0)