From cae63f886fb819cd96eafb32964949bc8d6e9a4f Mon Sep 17 00:00:00 2001 From: Diego Novillo Date: Wed, 22 Jul 2009 15:44:46 -0400 Subject: tree-pass.h (TDF_EH): Define. * tree-pass.h (TDF_EH): Define. * gimple-pretty-print.c (dump_gimple_stmt): If FLAGS contains TDF_EH, print the EH region number holding GS. * tree-dump.c (dump_options): Add "eh". * doc/invoke.texi: Document it. From-SVN: r149958 --- gcc/tree-pass.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'gcc/tree-pass.h') diff --git a/gcc/tree-pass.h b/gcc/tree-pass.h index a68cb16..bc1ebda 100644 --- a/gcc/tree-pass.h +++ b/gcc/tree-pass.h @@ -76,6 +76,8 @@ enum tree_dump_index #define TDF_RHS_ONLY (1 << 17) /* a flag to only print the RHS of a gimple stmt. */ #define TDF_ASMNAME (1 << 18) /* display asm names of decls */ +#define TDF_EH (1 << 19) /* display EH region number + holding this gimple statement. */ /* In tree-dump.c */ -- cgit v1.1