Commit 609023ff by Ben Elliston Committed by Ben Elliston

expmed.c (extract_split_bit_field): Remove if (0) code.

	* expmed.c (extract_split_bit_field): Remove if (0) code.
	* tree-ssa-structalias.c (do_sd_constraint): Likewise.
	(do_ds_constraint): Likewise.

From-SVN: r133848
parent 93d45d9e
2008-04-03 Ben Elliston <bje@au.ibm.com>
* expmed.c (extract_split_bit_field): Remove if (0) code.
* tree-ssa-structalias.c (do_sd_constraint): Likewise.
(do_ds_constraint): Likewise.
2008-04-02 Joseph Myers <joseph@codesourcery.com> 2008-04-02 Joseph Myers <joseph@codesourcery.com>
* doc/cppopts.texi (-dU): Document. * doc/cppopts.texi (-dU): Document.
......
...@@ -2002,16 +2002,7 @@ extract_split_bit_field (rtx op0, unsigned HOST_WIDE_INT bitsize, ...@@ -2002,16 +2002,7 @@ extract_split_bit_field (rtx op0, unsigned HOST_WIDE_INT bitsize,
if (REG_P (op0) || GET_CODE (op0) == SUBREG) if (REG_P (op0) || GET_CODE (op0) == SUBREG)
unit = BITS_PER_WORD; unit = BITS_PER_WORD;
else else
{ unit = MIN (MEM_ALIGN (op0), BITS_PER_WORD);
unit = MIN (MEM_ALIGN (op0), BITS_PER_WORD);
if (0 && bitsize / unit > 2)
{
rtx tmp = extract_force_align_mem_bit_field (op0, bitsize, bitpos,
unsignedp);
if (tmp)
return tmp;
}
}
while (bitsdone < bitsize) while (bitsdone < bitsize)
{ {
......
...@@ -1428,9 +1428,6 @@ do_sd_constraint (constraint_graph_t graph, constraint_t c, ...@@ -1428,9 +1428,6 @@ do_sd_constraint (constraint_graph_t graph, constraint_t c,
else if (add_graph_edge (graph, lhs, t)) else if (add_graph_edge (graph, lhs, t))
flag |= bitmap_ior_into (sol, get_varinfo (t)->solution); flag |= bitmap_ior_into (sol, get_varinfo (t)->solution);
} }
else if (0 && dump_file && !(get_varinfo (j)->is_special_var))
fprintf (dump_file, "Untypesafe usage in do_sd_constraint\n");
} }
done: done:
...@@ -1514,8 +1511,6 @@ do_ds_constraint (constraint_t c, bitmap delta) ...@@ -1514,8 +1511,6 @@ do_ds_constraint (constraint_t c, bitmap delta)
} }
} }
} }
else if (0 && dump_file && !(get_varinfo (j)->is_special_var))
fprintf (dump_file, "Untypesafe usage in do_ds_constraint\n");
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment