Commit d5606ec9 by Richard Henderson Committed by Richard Henderson

* varasm.c (force_const_mem): Call set_mem_align.

From-SVN: r92533
parent 513618db
2004-12-22 Richard Henderson <rth@redhat.com>
* varasm.c (force_const_mem): Call set_mem_align.
2004-12-22 Richard Henderson <rth@redhat.com>
* config/i386/predicates.md (sse_comparison_operator): Fix
typo in ieee test.
(arith_or_logical_operator): Downcase codes.
......
......@@ -3021,6 +3021,7 @@ force_const_mem (enum machine_mode mode, rtx x)
/* Construct the MEM. */
desc->mem = def = gen_const_mem (mode, symbol);
set_mem_attributes (def, lang_hooks.types.type_for_mode (mode, 0), 1);
set_mem_align (def, align);
/* If we're dropping a label to the constant pool, make sure we
don't delete it. */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment