diff options
author | David Malcolm <dmalcolm@redhat.com> | 2018-07-02 03:39:48 +0000 |
---|---|---|
committer | David Malcolm <dmalcolm@gcc.gnu.org> | 2018-07-02 03:39:48 +0000 |
commit | d72596738aa8f37e53380694c3b83db306b78d63 (patch) | |
tree | 5353c418f7cb35770617f7ffff53878d78c429f5 /gcc/dumpfile.h | |
parent | 4d78796dbabdd4f7628cdd9fa84567c1f5c540e5 (diff) | |
download | gcc-d72596738aa8f37e53380694c3b83db306b78d63.tar.gz |
Reinstate dump_generic_expr_loc
gcc/ChangeLog:
* dumpfile.c (dump_generic_expr_loc): Undo removal of this
function in r262149, changing "loc" param from source_location to
const dump_location_t &.
* dumpfile.h (dump_generic_expr_loc): Undo removal of this
declaration, as above.
From-SVN: r262295
Diffstat (limited to 'gcc/dumpfile.h')
-rw-r--r-- | gcc/dumpfile.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gcc/dumpfile.h b/gcc/dumpfile.h index 9828a3f550c..0e588a6dac6 100644 --- a/gcc/dumpfile.h +++ b/gcc/dumpfile.h @@ -425,6 +425,8 @@ extern void dump_printf_loc (dump_flags_t, const dump_location_t &, const char *, ...) ATTRIBUTE_PRINTF_3; extern void dump_function (int phase, tree fn); extern void dump_basic_block (dump_flags_t, basic_block, int); +extern void dump_generic_expr_loc (dump_flags_t, const dump_location_t &, + dump_flags_t, tree); extern void dump_generic_expr (dump_flags_t, dump_flags_t, tree); extern void dump_gimple_stmt_loc (dump_flags_t, const dump_location_t &, dump_flags_t, gimple *, int); |