From: John David Anglin Date: Sun, 5 Jun 2016 20:42:40 +0000 (+0000) Subject: expr.c (move_by_pieces_d::generate): Mark mode parameter with ATTRIBUTE_UNUSED. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=603e5a828b646bb802c4695b1046c7974fc2112f;p=gcc.git expr.c (move_by_pieces_d::generate): Mark mode parameter with ATTRIBUTE_UNUSED. * expr.c (move_by_pieces_d::generate): Mark mode parameter with ATTRIBUTE_UNUSED. From-SVN: r237110 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index d7a2527cace..db3a073ea7e 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2016-06-05 John David Anglin + + * expr.c (move_by_pieces_d::generate): Mark mode parameter with + ATTRIBUTE_UNUSED. + 2016-06-05 Jan Hubicka * predict.c (predicted_by_loop_heuristics_p): New function. diff --git a/gcc/expr.c b/gcc/expr.c index 19af58fe03d..2c32b2859ed 100644 --- a/gcc/expr.c +++ b/gcc/expr.c @@ -1143,7 +1143,8 @@ move_by_pieces_d::prepare_mode (machine_mode mode, unsigned int align) gen function that should be used to generate the mode. */ void -move_by_pieces_d::generate (rtx op0, rtx op1, machine_mode mode) +move_by_pieces_d::generate (rtx op0, rtx op1, + machine_mode mode ATTRIBUTE_UNUSED) { #ifdef PUSH_ROUNDING if (op0 == NULL_RTX)