diff options
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/optabs.c | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index ba529ad..04cd517 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -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 diff --git a/gcc/optabs.c b/gcc/optabs.c index e26a046..8f5c5ca 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); |