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
This commit is contained in:
Graham Stott 2001-11-16 13:22:59 +00:00 committed by Graham Stott
parent 6d41a92f7c
commit f4dc10d1cb
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
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

View File

@ -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);