diff options
author | Torbjorn Granlund <tege@gnu.org> | 1993-10-28 00:58:04 +0000 |
---|---|---|
committer | Torbjorn Granlund <tege@gnu.org> | 1993-10-28 00:58:04 +0000 |
commit | 669054c144a18cccfdc945ae5ab3d09c3c55e7a3 (patch) | |
tree | d588673d45d926f24d5fd3d1e2aa4fa7c6c83328 /gcc | |
parent | d3ed72f07d7cd9580b0ce182b0ccbe04c255af2e (diff) | |
download | gcc-669054c144a18cccfdc945ae5ab3d09c3c55e7a3.zip gcc-669054c144a18cccfdc945ae5ab3d09c3c55e7a3.tar.gz gcc-669054c144a18cccfdc945ae5ab3d09c3c55e7a3.tar.bz2 |
(emit_move_sequence): Fix typo, `Pmode' was `mode'.
From-SVN: r5924
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/config/pa/pa.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/pa/pa.c b/gcc/config/pa/pa.c index 239d8ce..e4ca7b7 100644 --- a/gcc/config/pa/pa.c +++ b/gcc/config/pa/pa.c @@ -802,7 +802,7 @@ emit_move_sequence (operands, mode, scratch_reg) memory location into scratch_reg. */ xoperands[0] = scratch_reg; xoperands[1] = XEXP (force_const_mem (mode, operand1), 0); - emit_move_sequence (xoperands, mode, 0); + emit_move_sequence (xoperands, Pmode, 0); /* Now load the destination register. */ emit_insn (gen_rtx (SET, mode, operand0, |