Allow more complex call replacements in gimple-fold.c
authorRichard Sandiford <richard.sandiford@arm.com>
Mon, 26 Oct 2015 14:59:36 +0000 (14:59 +0000)
committerRichard Sandiford <rsandifo@gcc.gnu.org>
Mon, 26 Oct 2015 14:59:36 +0000 (14:59 +0000)
commitfec40d06dadf9cd5bf4adb0ee9a47f267e6c7693
treed47ed2f8bb25f49bb46b11ff5fbf031bfdb518f8
parent0b7c37ee712fdc5164db6cd6acb816fcf6752c02
Allow more complex call replacements in gimple-fold.c

An upcoming patch adds a match.pd rule that folds pow(pow(x,y),z)
to pow(x,y*z).  This fold can reuse the existing pow gimple statement
and simply replace the operands with x and y*z.  However, the y*z
itself requires a separate gimple statement and the code wasn't
prepared to handle that.

Tested on x86_64-linux-gnu, aarch64-linux-gnu and arm-linux-gnueabi.

gcc/
* gimple-fold.c (replace_stmt_with_simplification): Don't allow
new statements to be inserted if inplace.  Allow calls to have
nonempty sequences.

From-SVN: r229371
gcc/ChangeLog
gcc/gimple-fold.c