aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorDavid Edelsohn <dje@gcc.gnu.org>2004-01-30 15:47:32 -0500
committerDavid Edelsohn <dje@gcc.gnu.org>2004-01-30 15:47:32 -0500
commit630d42a0aef7a99b330446bc2e54ba049db9289b (patch)
tree71c58ea0d7c1399c37742df59600ad953f8e6889 /gcc
parent98e5e08701da5a0f77eb8f3efc824043ec635bdf (diff)
downloadgcc-630d42a0aef7a99b330446bc2e54ba049db9289b.zip
gcc-630d42a0aef7a99b330446bc2e54ba049db9289b.tar.gz
gcc-630d42a0aef7a99b330446bc2e54ba049db9289b.tar.bz2
Fix whitespace.
From-SVN: r76990
Diffstat (limited to 'gcc')
-rw-r--r--gcc/config/rs6000/rs6000.c72
1 files changed, 36 insertions, 36 deletions
diff --git a/gcc/config/rs6000/rs6000.c b/gcc/config/rs6000/rs6000.c
index c2daec6..127f4b1 100644
--- a/gcc/config/rs6000/rs6000.c
+++ b/gcc/config/rs6000/rs6000.c
@@ -3426,47 +3426,47 @@ rs6000_emit_move (rtx dest, rtx source, enum machine_mode mode)
adjust_address (operands[1], SImode, 4));
return;
}
- else if (mode == DImode && TARGET_POWERPC64
- && GET_CODE (operands[0]) == REG
- && GET_CODE (operands[1]) == MEM && optimize > 0
- && SLOW_UNALIGNED_ACCESS (DImode,
- MEM_ALIGN (operands[1]) > 32
- ? 32
- : MEM_ALIGN (operands[1]))
- && !no_new_pseudos)
- {
- rtx reg = gen_reg_rtx (SImode);
- emit_insn (gen_rtx_SET (SImode, reg,
- adjust_address (operands[1], SImode, 0)));
- reg = simplify_gen_subreg (DImode, reg, SImode, 0);
- emit_insn (gen_insvdi (operands[0], GEN_INT (32), const0_rtx, reg));
- reg = gen_reg_rtx (SImode);
- emit_insn (gen_rtx_SET (SImode, reg,
- adjust_address (operands[1], SImode, 4)));
- reg = simplify_gen_subreg (DImode, reg, SImode, 0);
- emit_insn (gen_insvdi (operands[0], GEN_INT (32), GEN_INT (32), reg));
- return;
- }
- else if (mode == DImode && TARGET_POWERPC64
- && GET_CODE (operands[1]) == REG
- && GET_CODE (operands[0]) == MEM && optimize > 0
- && SLOW_UNALIGNED_ACCESS (DImode,
- MEM_ALIGN (operands[0]) > 32
- ? 32
- : MEM_ALIGN (operands[0]))
- && !no_new_pseudos)
+ else if (mode == DImode && TARGET_POWERPC64
+ && GET_CODE (operands[0]) == REG
+ && GET_CODE (operands[1]) == MEM && optimize > 0
+ && SLOW_UNALIGNED_ACCESS (DImode,
+ MEM_ALIGN (operands[1]) > 32
+ ? 32
+ : MEM_ALIGN (operands[1]))
+ && !no_new_pseudos)
+ {
+ rtx reg = gen_reg_rtx (SImode);
+ emit_insn (gen_rtx_SET (SImode, reg,
+ adjust_address (operands[1], SImode, 0)));
+ reg = simplify_gen_subreg (DImode, reg, SImode, 0);
+ emit_insn (gen_insvdi (operands[0], GEN_INT (32), const0_rtx, reg));
+ reg = gen_reg_rtx (SImode);
+ emit_insn (gen_rtx_SET (SImode, reg,
+ adjust_address (operands[1], SImode, 4)));
+ reg = simplify_gen_subreg (DImode, reg, SImode, 0);
+ emit_insn (gen_insvdi (operands[0], GEN_INT (32), GEN_INT (32), reg));
+ return;
+ }
+ else if (mode == DImode && TARGET_POWERPC64
+ && GET_CODE (operands[1]) == REG
+ && GET_CODE (operands[0]) == MEM && optimize > 0
+ && SLOW_UNALIGNED_ACCESS (DImode,
+ MEM_ALIGN (operands[0]) > 32
+ ? 32
+ : MEM_ALIGN (operands[0]))
+ && !no_new_pseudos)
{
- rtx reg = gen_reg_rtx (DImode);
- emit_move_insn (reg,
+ rtx reg = gen_reg_rtx (DImode);
+ emit_move_insn (reg,
gen_rtx_LSHIFTRT (DImode, operands[1], GEN_INT (32)));
- emit_move_insn (adjust_address (operands[0], SImode, 0),
+ emit_move_insn (adjust_address (operands[0], SImode, 0),
simplify_gen_subreg (SImode, reg, DImode, 0));
- emit_move_insn (reg, operands[1]);
- emit_move_insn (adjust_address (operands[0], SImode, 4),
+ emit_move_insn (reg, operands[1]);
+ emit_move_insn (adjust_address (operands[0], SImode, 4),
simplify_gen_subreg (SImode, reg, DImode, 0));
- return;
+ return;
}
-
+
if (!no_new_pseudos)
{
if (GET_CODE (operands[1]) == MEM && optimize > 0