diff options
| author | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-12-23 07:13:05 +0000 |
|---|---|---|
| committer | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-12-23 07:13:05 +0000 |
| commit | 8c34e451625b8afb19e22134172034e2ea61e6a3 (patch) | |
| tree | c886fa551d968892e0307ac1f35cda472421f9b4 /gcc | |
| parent | ae48d46aa189c3e9d29c9fb9dae9aa6b8ab63d95 (diff) | |
| download | ppe42-gcc-8c34e451625b8afb19e22134172034e2ea61e6a3.tar.gz ppe42-gcc-8c34e451625b8afb19e22134172034e2ea61e6a3.zip | |
* varasm.c (force_const_mem): Call set_mem_align.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@92533 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc')
| -rw-r--r-- | gcc/ChangeLog | 4 | ||||
| -rw-r--r-- | gcc/varasm.c | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 05ddad17d38..50109a10f65 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,9 @@ 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. diff --git a/gcc/varasm.c b/gcc/varasm.c index 79503d194d1..362abafa032 100644 --- a/gcc/varasm.c +++ b/gcc/varasm.c @@ -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. */ |

