Ticket #51170: patch-gcc-tree-ssa-uninit.c.diff
File patch-gcc-tree-ssa-uninit.c.diff, 807 bytes (added by tenomoto (Takeshi Enomoto), 9 years ago) |
---|
-
gcc/tree-ssa-uninit.c
old new 1118 1118 edge opnd_edge; 1119 1119 unsigned uninit_opnds2 1120 1120 = compute_uninit_opnds_pos (opnd_def_phi); 1121 gcc_assert (!MASK_EMPTY (uninit_opnds2));1121 if (!MASK_EMPTY (uninit_opnds2)) { 1122 1122 opnd_edge = gimple_phi_arg_edge (phi, i); 1123 1123 if (!is_use_properly_guarded (phi, 1124 1124 opnd_edge->src, … … 1126 1126 uninit_opnds2, 1127 1127 visited_phis)) 1128 1128 return false; 1129 } 1129 1130 } 1130 1131 else 1131 1132 return false;