diff options
author | Richard Henderson <rth@redhat.com> | 2009-06-18 16:27:40 -0700 |
---|---|---|
committer | Richard Henderson <rth@gcc.gnu.org> | 2009-06-18 16:27:40 -0700 |
commit | 394bd84dd2b907ae92be4af08d6820eed13c71fb (patch) | |
tree | cf65454be302c6501997056e75641b5889c7ca52 /gcc/tree-pass.h | |
parent | 2a457a9b4fa448489522d39390e857541a95abd5 (diff) | |
download | gcc-394bd84dd2b907ae92be4af08d6820eed13c71fb.zip gcc-394bd84dd2b907ae92be4af08d6820eed13c71fb.tar.gz gcc-394bd84dd2b907ae92be4af08d6820eed13c71fb.tar.bz2 |
re PR testsuite/40488 (Revision 148642 caused extra failures)
PR 40488
* tree-pass.h (TDF_ASMNAME): New.
* tree-dump.c (dump_options): Add asmname.
* doc/invoke.texi: Document it.
* tree-pretty-print.c (maybe_dump_asm_name): Merge into...
(dump_decl_name): ...here.
(dump_function_name): New flags arg; mind TDF_ASMNAME.
(dump_generic_node): Update dump_function_name calls.
(print_call_name): New flags arg; update all dump calls.
* diagnostic.h (print_call_name): Update.
* gimple-pretty-print.c (dump_gimple_call): Update.
From-SVN: r148685
Diffstat (limited to 'gcc/tree-pass.h')
-rw-r--r-- | gcc/tree-pass.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gcc/tree-pass.h b/gcc/tree-pass.h index e919909..db3ebce 100644 --- a/gcc/tree-pass.h +++ b/gcc/tree-pass.h @@ -75,6 +75,9 @@ enum tree_dump_index dumper to print stmts. */ #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 */ + + /* In tree-dump.c */ extern char *get_dump_file_name (int); |