aboutsummaryrefslogtreecommitdiff
path: root/gcc/pretty-print.h
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/pretty-print.h')
-rw-r--r--gcc/pretty-print.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/gcc/pretty-print.h b/gcc/pretty-print.h
index fc58844..d810e57 100644
--- a/gcc/pretty-print.h
+++ b/gcc/pretty-print.h
@@ -340,6 +340,13 @@ pp_get_prefix (const pretty_printer *pp) { return pp->prefix; }
pp_string (PP, pp_buffer (PP)->digit_buffer); \
} \
while (0)
+#define pp_vrange(PP, R) \
+ do \
+ { \
+ vrange_printer vrange_pp (PP); \
+ (R)->accept (vrange_pp); \
+ } \
+ while (0)
#define pp_double(PP, F) pp_scalar (PP, "%f", F)
#define pp_pointer(PP, P) pp_scalar (PP, "%p", P)