From f4dc10d1cb94e94ee72bf6cdd1239ac2c89c99f8 Mon Sep 17 00:00:00 2001 From: Graham Stott Date: Fri, 16 Nov 2001 13:22:59 +0000 Subject: 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 --- gcc/ChangeLog | 5 +++++ gcc/optabs.c | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) (limited to 'gcc') 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 + + * 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 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); -- cgit v1.1