sh.md (symGOTOFF2reg): Add missing parenthesis.
* config/sh/sh.md (symGOTOFF2reg): Add missing parenthesis. (symDTPOFF2reg): Likewise. From-SVN: r126571
This commit is contained in:
parent
0f3d38b644
commit
45312d9d96
2 changed files with 7 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
|||
2007-07-12 Kaz Kojima <kkojima@gcc.gnu.org>
|
||||
|
||||
* config/sh/sh.md (symGOTOFF2reg): Add missing parenthesis.
|
||||
(symDTPOFF2reg): Likewise.
|
||||
|
||||
2007-07-11 Daniel Berlin <dberlin@dberlin.org>
|
||||
|
||||
PR tree-optimization/32663
|
||||
|
|
|
@ -8792,7 +8792,7 @@ label:
|
|||
rtx gotoffsym, insn;
|
||||
rtx t = (!can_create_pseudo_p ()
|
||||
? operands[0]
|
||||
: gen_reg_rtx (GET_MODE (operands[0]));
|
||||
: gen_reg_rtx (GET_MODE (operands[0])));
|
||||
|
||||
gotoffsym = gen_sym2GOTOFF (operands[1]);
|
||||
PUT_MODE (gotoffsym, Pmode);
|
||||
|
@ -8914,7 +8914,7 @@ mov.l\\t1f,r4\\n\\
|
|||
rtx dtpoffsym, insn;
|
||||
rtx t = (!can_create_pseudo_p ()
|
||||
? operands[0]
|
||||
: gen_reg_rtx (GET_MODE (operands[0]));
|
||||
: gen_reg_rtx (GET_MODE (operands[0])));
|
||||
|
||||
dtpoffsym = gen_sym2DTPOFF (operands[1]);
|
||||
PUT_MODE (dtpoffsym, Pmode);
|
||||
|
|
Loading…
Add table
Reference in a new issue