diff options
Diffstat (limited to 'gcc/tree-vrp.c')
-rw-r--r-- | gcc/tree-vrp.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gcc/tree-vrp.c b/gcc/tree-vrp.c index 237245e..514a3ec 100644 --- a/gcc/tree-vrp.c +++ b/gcc/tree-vrp.c @@ -4651,6 +4651,9 @@ find_assert_locations_1 (basic_block bb, sbitmap live) stmt = gsi_stmt (si); + if (is_gimple_debug (stmt)) + continue; + /* See if we can derive an assertion for any of STMT's operands. */ FOR_EACH_SSA_TREE_OPERAND (op, stmt, i, SSA_OP_USE) { |