diff options
Diffstat (limited to 'gcc/tree.h')
-rw-r--r-- | gcc/tree.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -707,13 +707,13 @@ struct tree_real_cst GTY(()) /* In a STRING_CST */ #define TREE_STRING_LENGTH(NODE) (STRING_CST_CHECK (NODE)->string.length) -#define TREE_STRING_POINTER(NODE) (STRING_CST_CHECK (NODE)->string.str) +#define TREE_STRING_POINTER(NODE) (STRING_CST_CHECK (NODE)->string.pointer) struct tree_string GTY(()) { struct tree_common common; int length; - const char str[1]; + const char *pointer; }; /* In a COMPLEX_CST node. */ |