diff options
author | Graham Stott <grahams@redhat.com> | 2001-11-16 13:22:59 +0000 |
---|---|---|
committer | Graham Stott <grahams@gcc.gnu.org> | 2001-11-16 13:22:59 +0000 |
commit | f4dc10d1cb94e94ee72bf6cdd1239ac2c89c99f8 (patch) | |
tree | ad3a5bc0d8eb6c1f4d1bc9ae503803fcf70b2a7c | |
parent | 6d41a92f7c22e76af40ee0012f02af8d0f52efe4 (diff) | |
download | gcc-f4dc10d1cb94e94ee72bf6cdd1239ac2c89c99f8.zip gcc-f4dc10d1cb94e94ee72bf6cdd1239ac2c89c99f8.tar.gz gcc-f4dc10d1cb94e94ee72bf6cdd1239ac2c89c99f8.tar.bz2 |
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
-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); |