diff options
Diffstat (limited to 'gcc/tree-dump.c')
-rw-r--r-- | gcc/tree-dump.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gcc/tree-dump.c b/gcc/tree-dump.c index beac441..7de0939 100644 --- a/gcc/tree-dump.c +++ b/gcc/tree-dump.c @@ -32,6 +32,11 @@ along with GCC; see the file COPYING3. If not see #include "langhooks.h" #include "tree-iterator.h" +/* If non-NULL, return one past-the-end of the matching SUBPART of + the WHOLE string. */ +#define skip_leading_substring(whole, part) \ + (strncmp (whole, part, strlen (part)) ? NULL : whole + strlen (part)) + static unsigned int queue (dump_info_p, const_tree, int); static void dump_index (dump_info_p, unsigned int); static void dequeue_and_dump (dump_info_p); |