diff options
author | Richard Biener <rguenther@suse.de> | 2018-07-03 09:39:59 +0000 |
---|---|---|
committer | Richard Biener <rguenth@gcc.gnu.org> | 2018-07-03 09:39:59 +0000 |
commit | 30f502eddecac8ecfbec4b86f3a80f1859076b6d (patch) | |
tree | 26d48636b7712963d8eecf6332e4650812b40652 /gcc/dumpfile.h | |
parent | cbdb1229e3a822bf84d93586d18540d0650d54da (diff) | |
download | gcc-30f502eddecac8ecfbec4b86f3a80f1859076b6d.zip gcc-30f502eddecac8ecfbec4b86f3a80f1859076b6d.tar.gz gcc-30f502eddecac8ecfbec4b86f3a80f1859076b6d.tar.bz2 |
tree-vect-stmts.c (vect_is_simple_use): Consolidate dumping, always set *dt.
2018-07-03 Richard Biener <rguenther@suse.de>
* tree-vect-stmts.c (vect_is_simple_use): Consolidate dumping,
always set *dt. Dump vectype in vectype overload.
* dumpfile.h (dump_gimple_expr): New function.
(dump_gimple_expr_loc): Likewise.
* dumpfile.c (dump_gimple_expr): New function.
(dump_gimple_expr_loc): Likewise.
From-SVN: r262330
Diffstat (limited to 'gcc/dumpfile.h')
-rw-r--r-- | gcc/dumpfile.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gcc/dumpfile.h b/gcc/dumpfile.h index 0e588a6..a417241 100644 --- a/gcc/dumpfile.h +++ b/gcc/dumpfile.h @@ -431,6 +431,9 @@ 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); extern void dump_gimple_stmt (dump_flags_t, dump_flags_t, gimple *, int); +extern void dump_gimple_expr_loc (dump_flags_t, const dump_location_t &, + dump_flags_t, gimple *, int); +extern void dump_gimple_expr (dump_flags_t, dump_flags_t, gimple *, int); extern void print_combine_total_stats (void); extern bool enable_rtl_dump_file (void); |