diff options
| author | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-01-15 03:25:50 +0000 |
|---|---|---|
| committer | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-01-15 03:25:50 +0000 |
| commit | d18a1a2bc357a0bee882c5f6e72ae4318883bead (patch) | |
| tree | e35f81c38559077305a78f22c144218a8967b660 | |
| parent | 6a1c27c3f606a383c075e329c769128c54ee57e2 (diff) | |
| download | ppe42-gcc-d18a1a2bc357a0bee882c5f6e72ae4318883bead.tar.gz ppe42-gcc-d18a1a2bc357a0bee882c5f6e72ae4318883bead.zip | |
* config/alpha/alpha.c (alpha_expand_mov): Use correct mode
for force_const_mem.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@61309 138bc75d-0d04-0410-961f-82ee72b054a4
| -rw-r--r-- | gcc/ChangeLog | 5 | ||||
| -rw-r--r-- | gcc/config/alpha/alpha.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 1f04fa4b196..62db0094ac2 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2003-01-14 Richard Henderson <rth@redhat.com> + + * config/alpha/alpha.c (alpha_expand_mov): Use correct mode + for force_const_mem. + 2003-01-14 Kaveh R. Ghazi <ghazi@caip.rutgers.edu> * genattr.c (main): Rearrange output to avoid prototype warning. diff --git a/gcc/config/alpha/alpha.c b/gcc/config/alpha/alpha.c index 866c465fdc8..18573741227 100644 --- a/gcc/config/alpha/alpha.c +++ b/gcc/config/alpha/alpha.c @@ -3091,7 +3091,7 @@ alpha_expand_mov (mode, operands) } /* Otherwise we've nothing left but to drop the thing to memory. */ - operands[1] = force_const_mem (DImode, operands[1]); + operands[1] = force_const_mem (mode, operands[1]); if (reload_in_progress) { emit_move_insn (operands[0], XEXP (operands[1], 0)); |

