summaryrefslogtreecommitdiff
path: root/gcc/obstack.h
diff options
context:
space:
mode:
authorJim Wilson <wilson@cygnus.com>1997-10-22 01:16:10 +0000
committerJim Wilson <wilson@gcc.gnu.org>1997-10-21 18:16:10 -0700
commitc1e385dbd186ebe3f9649323551d26bd3ea25c00 (patch)
tree3e547ff4dc8d278c195a63036d9510f67a04edf3 /gcc/obstack.h
parentc6ee9150da2bf77d08746e8ea254d8defb6978a7 (diff)
downloadgcc-c1e385dbd186ebe3f9649323551d26bd3ea25c00.tar.gz
Fix typo in last obstack.h change.
* obstack.h (obstack_empty_p): Fix spurious space after backslash. From-SVN: r16144
Diffstat (limited to 'gcc/obstack.h')
-rw-r--r--gcc/obstack.h2
1 files changed, 1 insertions, 1 deletions
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)