aboutsummaryrefslogtreecommitdiff
path: root/gcc/print-rtl-function.c
diff options
context:
space:
mode:
authorRichard Biener <rguenther@suse.de>2017-08-23 13:44:20 +0000
committerRichard Biener <rguenth@gcc.gnu.org>2017-08-23 13:44:20 +0000
commit60591d4e4bb70526301501cfeb292639434baa3f (patch)
tree88fef090613210a00c28e97b0904826a83c20a32 /gcc/print-rtl-function.c
parent3767b2e4bebebeac612cc4c3210b43c31786a956 (diff)
downloadgcc-60591d4e4bb70526301501cfeb292639434baa3f.zip
gcc-60591d4e4bb70526301501cfeb292639434baa3f.tar.gz
gcc-60591d4e4bb70526301501cfeb292639434baa3f.tar.bz2
function.c (fndecl_name): Use verbosity 1 (no arguments) for lang_hooks.decl_printable_name.
2017-08-23 Richard Biener <rguenther@suse.de> * function.c (fndecl_name): Use verbosity 1 (no arguments) for lang_hooks.decl_printable_name. * print-rtl-function.c (print_rtx_function): Likewise. * tree-pretty-print.c (dump_function_header): Likewise. * g++.dg/cpp1y/constexpr-instantiate.C: Adjust. * g++.dg/tree-ssa/pr45605.C: Likewise. * gnat.dg/noinline2.ad: Likewise.b * gnat.dg/renaming6.ad: Likewise.b * gnat.dg/renaming6.ad: Likewise.s * gnat.dg/specs/noinline3.ad: Likewise.s From-SVN: r251308
Diffstat (limited to 'gcc/print-rtl-function.c')
-rw-r--r--gcc/print-rtl-function.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/print-rtl-function.c b/gcc/print-rtl-function.c
index ac8963e..55edb7e 100644
--- a/gcc/print-rtl-function.c
+++ b/gcc/print-rtl-function.c
@@ -227,7 +227,7 @@ print_rtx_function (FILE *outfile, function *fn, bool compact)
tree fdecl = fn->decl;
- const char *dname = lang_hooks.decl_printable_name (fdecl, 2);
+ const char *dname = lang_hooks.decl_printable_name (fdecl, 1);
fprintf (outfile, "(function \"%s\"\n", dname);