diff options
Diffstat (limited to 'gcc/stringpool.c')
-rw-r--r-- | gcc/stringpool.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/gcc/stringpool.c b/gcc/stringpool.c index f7aae79..2f21466 100644 --- a/gcc/stringpool.c +++ b/gcc/stringpool.c @@ -1,5 +1,5 @@ /* String pool for GCC. - Copyright (C) 2000-2020 Free Software Foundation, Inc. + Copyright (C) 2000-2021 Free Software Foundation, Inc. This file is part of GCC. @@ -206,6 +206,12 @@ gt_pch_nx (const char *& x) } void +gt_pch_nx (char *& x) +{ + gt_pch_n_S (x); +} + +void gt_pch_nx (unsigned char *& x) { gt_pch_n_S (x); |