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:
parent
6d41a92f7c
commit
f4dc10d1cb
@ -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
|
||||
|
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user