diff options
author | Aldy Hernandez <aldyh@redhat.com> | 2020-06-18 14:14:04 +0200 |
---|---|---|
committer | Aldy Hernandez <aldyh@redhat.com> | 2020-06-18 14:14:04 +0200 |
commit | 6472945db3885a749fb17073a3dee25c9839b21a (patch) | |
tree | f8320b0e81e30aeefdbbe17b31784620f8d9dfc4 /gcc | |
parent | 397aece267f1b2152fa1f2efa3f71f22a98aaa3f (diff) | |
download | gcc-6472945db3885a749fb17073a3dee25c9839b21a.zip gcc-6472945db3885a749fb17073a3dee25c9839b21a.tar.gz gcc-6472945db3885a749fb17073a3dee25c9839b21a.tar.bz2 |
Minor cleanups to minimize differences with upstream.
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/gimple-pretty-print.c | 1 | ||||
-rw-r--r-- | gcc/tree-vrp.c | 1 |
2 files changed, 1 insertions, 1 deletions
diff --git a/gcc/gimple-pretty-print.c b/gcc/gimple-pretty-print.c index fd02820..c5b2649 100644 --- a/gcc/gimple-pretty-print.c +++ b/gcc/gimple-pretty-print.c @@ -190,6 +190,7 @@ print_gimple_expr (FILE *file, gimple *g, int spc, dump_flags_t flags) pp_flush (&buffer); } + /* Print the GIMPLE sequence SEQ on BUFFER using SPC indentation spaces and FLAGS as in pp_gimple_stmt_1. The caller is responsible for calling pp_flush on BUFFER to finalize diff --git a/gcc/tree-vrp.c b/gcc/tree-vrp.c index 5e48709..9b281c6 100644 --- a/gcc/tree-vrp.c +++ b/gcc/tree-vrp.c @@ -1796,7 +1796,6 @@ register_edge_assert_for_2 (tree name, edge e, { enum tree_code new_code = ((comp_code == GT_EXPR || comp_code == GE_EXPR) ? GT_EXPR : LE_EXPR); - add_assert_info (asserts, name, name, new_code, x); } add_assert_info (asserts, name, name, comp_code, val); |