diff --git a/gcc/ChangeLog b/gcc/ChangeLog index ba529ad867c..04cd517d744 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2001-11-16 Graham Stott + + * optabs.c (prepare_cmp_insn): Correct lossage in last change fix + OPALIGN type. + 2001-11-16 Olivier Hainque * except.c: Support for catching a list of types with a single handler diff --git a/gcc/optabs.c b/gcc/optabs.c index e26a046dc71..8f5c5ca31f3 100644 --- a/gcc/optabs.c +++ b/gcc/optabs.c @@ -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);