diff options
author | David Malcolm <dmalcolm@redhat.com> | 2016-11-09 20:55:03 +0000 |
---|---|---|
committer | David Malcolm <dmalcolm@gcc.gnu.org> | 2016-11-09 20:55:03 +0000 |
commit | 677aa9b4b79ce0e26cadbdbc9effdbaa00487e6a (patch) | |
tree | 1e612ec728999a697c3b1c9733cf121ba3eb3327 /gcc/print-rtl.h | |
parent | 410fe60d14642e03ba5b1658bff522d92fa4ca9f (diff) | |
download | gcc-677aa9b4b79ce0e26cadbdbc9effdbaa00487e6a.zip gcc-677aa9b4b79ce0e26cadbdbc9effdbaa00487e6a.tar.gz gcc-677aa9b4b79ce0e26cadbdbc9effdbaa00487e6a.tar.bz2 |
print-rtl-function.c: add (param) directive to dump
gcc/ChangeLog:
* print-rtl-function.c: Include varasm.h.
(print_any_param_name): New function.
(print_param): New function.
(print_rtx_function): Call print_param for each argument.
* print-rtl.c (rtx_writer::finish_directive): New function.
* print-rtl.h (rtx_writer::finish_directive): New decl.
From-SVN: r242023
Diffstat (limited to 'gcc/print-rtl.h')
-rw-r--r-- | gcc/print-rtl.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gcc/print-rtl.h b/gcc/print-rtl.h index 68db057..e722038 100644 --- a/gcc/print-rtl.h +++ b/gcc/print-rtl.h @@ -31,6 +31,8 @@ class rtx_writer void print_rtl (const_rtx rtx_first); int print_rtl_single_with_indent (const_rtx x, int ind); + void finish_directive (); + private: void print_rtx_operand_code_0 (const_rtx in_rtx, int idx); void print_rtx_operand_code_e (const_rtx in_rtx, int idx); |