From ac2a97db4b862579d6fea2e97000650bfe9b4659 Mon Sep 17 00:00:00 2001 From: Martin Liska Date: Thu, 6 Oct 2016 09:33:49 +0200 Subject: Fix warnings for make profiledbootstrap (PR bootstrap/77788) PR bootstrap/77788 * expmed.h (mul_highpart_cost_ptr): Add an gcc_assert. * gimple-ssa-strength-reduction.c (slsr_process_cast): Initialize a pointer to NULL. (slsr_process_copy): Likewise. * input.c (location_get_source_line): Likewise. * tree-ssa-ccp.c (optimize_atomic_bit_test_and): Likewise. From-SVN: r240827 --- gcc/tree-ssa-ccp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gcc/tree-ssa-ccp.c') diff --git a/gcc/tree-ssa-ccp.c b/gcc/tree-ssa-ccp.c index b6ccb59..3dc9ffa 100644 --- a/gcc/tree-ssa-ccp.c +++ b/gcc/tree-ssa-ccp.c @@ -2817,7 +2817,7 @@ optimize_atomic_bit_test_and (gimple_stmt_iterator *gsip, FOR_EACH_IMM_USE_STMT (g, iter, use_lhs) { enum tree_code code = ERROR_MARK; - tree op0, op1; + tree op0 = NULL_TREE, op1 = NULL_TREE; if (is_gimple_debug (g)) { has_debug_uses = true; -- cgit v1.1