aboutsummaryrefslogtreecommitdiff
path: root/gcc/expr.h
diff options
context:
space:
mode:
authorRichard Sandiford <richard.sandiford@linaro.org>2017-12-21 07:00:37 +0000
committerRichard Sandiford <rsandifo@gcc.gnu.org>2017-12-21 07:00:37 +0000
commita15b25dcdcf597e01f5079b2bc44c1430b5e7719 (patch)
tree70f0895f0abbd85a2301b0db51797febbb02449a /gcc/expr.h
parentf075bd950c5ad3e2baeb3d8f82fe962efc8e4f7a (diff)
downloadgcc-a15b25dcdcf597e01f5079b2bc44c1430b5e7719.zip
gcc-a15b25dcdcf597e01f5079b2bc44c1430b5e7719.tar.gz
gcc-a15b25dcdcf597e01f5079b2bc44c1430b5e7719.tar.bz2
poly_int: push_block/emit_push_insn
This patch changes the "extra" parameters to push_block and emit_push_insn from int to poly_int64. 2017-12-21 Richard Sandiford <richard.sandiford@linaro.org> Alan Hayward <alan.hayward@arm.com> David Sherwood <david.sherwood@arm.com> gcc/ * expr.h (push_block, emit_push_insn): Change the "extra" parameter from HOST_WIDE_INT to poly_int64. * expr.c (push_block, emit_push_insn): Likewise. Co-Authored-By: Alan Hayward <alan.hayward@arm.com> Co-Authored-By: David Sherwood <david.sherwood@arm.com> From-SVN: r255918
Diffstat (limited to 'gcc/expr.h')
-rw-r--r--gcc/expr.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/expr.h b/gcc/expr.h
index a260192..92a6b09 100644
--- a/gcc/expr.h
+++ b/gcc/expr.h
@@ -233,11 +233,11 @@ extern rtx emit_move_resolve_push (machine_mode, rtx);
/* Push a block of length SIZE (perhaps variable)
and return an rtx to address the beginning of the block. */
-extern rtx push_block (rtx, int, int);
+extern rtx push_block (rtx, poly_int64, int);
/* Generate code to push something onto the stack, given its mode and type. */
extern bool emit_push_insn (rtx, machine_mode, tree, rtx, unsigned int,
- int, rtx, int, rtx, rtx, int, rtx, bool);
+ int, rtx, poly_int64, rtx, rtx, int, rtx, bool);
/* Extract the accessible bit-range from a COMPONENT_REF. */
extern void get_bit_range (poly_uint64_pod *, poly_uint64_pod *, tree,