diff options
Diffstat (limited to 'gcc/stringpool.c')
-rw-r--r-- | gcc/stringpool.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/stringpool.c b/gcc/stringpool.c index ec744715993..f75fb935519 100644 --- a/gcc/stringpool.c +++ b/gcc/stringpool.c @@ -95,7 +95,7 @@ ggc_alloc_string (const char *contents, int length) return digit_string (contents[0] - '0'); obstack_grow0 (&string_stack, contents, length); - return obstack_finish (&string_stack); + return XOBFINISH (&string_stack, const char *); } /* Return an IDENTIFIER_NODE whose name is TEXT (a null-terminated string). |