h8300.c (Fpa): Use RTX_FRAME_RELATED_P directly rather than calling F.

* config/h8300/h8300.c (Fpa): Use RTX_FRAME_RELATED_P directly
       rather than calling F.

From-SVN: r219481
This commit is contained in:
Jeff Law 2015-01-12 10:26:09 -07:00 committed by Jeff Law
parent 791cfef8e7
commit f698a4b182
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2015-01-12 Jeff Law <law@redhat.com>
* config/h8300/h8300.c (Fpa): Use RTX_FRAME_RELATED_P directly
rather than calling F.
2015-01-12 Bernd Edlinger <bernd.edlinger@hotmail.de>
* tsan.c (instrument_expr): Use force_gimple_operand.

View File

@ -527,7 +527,7 @@ Fpa (rtx par)
int i;
for (i = 0; i < len; i++)
F (as_a <rtx_insn *> (XVECEXP (par, 0, i)), true);
RTX_FRAME_RELATED_P (XVECEXP (par, 0, i)) = 1;
return par;
}