Commit e19c9de2 by Marcus Shawcroft Committed by Marcus Shawcroft

[PATCH, AArch64] Remove excessive braces.

From-SVN: r199545
parent 38e6c9a6
2013-05-31 Marcus Shawcroft <marcus.shawcroft@arm.com> 2013-05-31 Marcus Shawcroft <marcus.shawcroft@arm.com>
* config/aarch64/aarch64.c (aarch64_load_symref_appropriately):
Remove un-necessary braces.
2013-05-31 Marcus Shawcroft <marcus.shawcroft@arm.com>
* config/aarch64/aarch64.c (aarch64_classify_symbol): * config/aarch64/aarch64.c (aarch64_classify_symbol):
Use SYMBOL_TINY_ABSOLUTE for AARCH64_CMODEL_TINY_PIC. Use SYMBOL_TINY_ABSOLUTE for AARCH64_CMODEL_TINY_PIC.
......
...@@ -532,9 +532,7 @@ aarch64_load_symref_appropriately (rtx dest, rtx imm, ...@@ -532,9 +532,7 @@ aarch64_load_symref_appropriately (rtx dest, rtx imm,
{ {
rtx tmp_reg = dest; rtx tmp_reg = dest;
if (can_create_pseudo_p ()) if (can_create_pseudo_p ())
{ tmp_reg = gen_reg_rtx (Pmode);
tmp_reg = gen_reg_rtx (Pmode);
}
emit_move_insn (tmp_reg, gen_rtx_HIGH (Pmode, imm)); emit_move_insn (tmp_reg, gen_rtx_HIGH (Pmode, imm));
emit_insn (gen_ldr_got_small (dest, tmp_reg, imm)); emit_insn (gen_ldr_got_small (dest, tmp_reg, imm));
return; return;
......
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