Commit f4dc10d1 by Graham Stott Committed by Graham Stott

optabs.c (prepare_cmp_insn): Correct lossage in last change fix OPALIGN type.

	* optabs.c (prepare_cmp_insn): Correct lossage in last change fix
	OPALIGN type.

From-SVN: r47088
parent 6d41a92f
2001-11-16 Graham Stott <grahams@redhat.com>
* optabs.c (prepare_cmp_insn): Correct lossage in last change fix
OPALIGN type.
2001-11-16 Olivier Hainque <hainque@act-europe.fr>
* except.c: Support for catching a list of types with a single handler
......
......@@ -3101,8 +3101,8 @@ prepare_cmp_insn (px, py, pcomparison, size, pmode, punsignedp, purpose)
{
rtx result;
enum machine_mode result_mode;
unsigned int opalign ATTRIBUTE_UNUSED
= (MIN (MEM_ALIGN (x), MEM_ALIGN (y)) / BITS_PER_UNIT);
rtx opalign ATTRIBUTE_UNUSED
= GEN_INT (MIN (MEM_ALIGN (x), MEM_ALIGN (y)) / BITS_PER_UNIT);
emit_queue ();
x = protect_from_queue (x, 0);
......
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