aboutsummaryrefslogtreecommitdiff
path: root/gcc/expr.h
diff options
context:
space:
mode:
authorRichard Sandiford <richard.sandiford@linaro.org>2017-12-21 07:01:30 +0000
committerRichard Sandiford <rsandifo@gcc.gnu.org>2017-12-21 07:01:30 +0000
commitf8f667be749428f92a33d6c4ff8b56538f958c10 (patch)
treefa602dfb49ef094128300da58ed242681ee11f93 /gcc/expr.h
parent80ce7eb44961b50d92b5481b26ce20a50567baae (diff)
downloadgcc-f8f667be749428f92a33d6c4ff8b56538f958c10.zip
gcc-f8f667be749428f92a33d6c4ff8b56538f958c10.tar.gz
gcc-f8f667be749428f92a33d6c4ff8b56538f958c10.tar.bz2
poly_int: emit_group_load/store
This patch changes the sizes passed to emit_group_load and emit_group_store 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 (emit_group_load, emit_group_load_into_temps) (emit_group_store): Take the size as a poly_int64 rather than an int. * expr.c (emit_group_load_1, emit_group_load): Likewise. (emit_group_load_into_temp, emit_group_store): Likewise. Co-Authored-By: Alan Hayward <alan.hayward@arm.com> Co-Authored-By: David Sherwood <david.sherwood@arm.com> From-SVN: r255925
Diffstat (limited to 'gcc/expr.h')
-rw-r--r--gcc/expr.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/expr.h b/gcc/expr.h
index 92a6b09..105c30e 100644
--- a/gcc/expr.h
+++ b/gcc/expr.h
@@ -128,10 +128,10 @@ extern rtx gen_group_rtx (rtx);
/* Load a BLKmode value into non-consecutive registers represented by a
PARALLEL. */
-extern void emit_group_load (rtx, rtx, tree, int);
+extern void emit_group_load (rtx, rtx, tree, poly_int64);
/* Similarly, but load into new temporaries. */
-extern rtx emit_group_load_into_temps (rtx, rtx, tree, int);
+extern rtx emit_group_load_into_temps (rtx, rtx, tree, poly_int64);
/* Move a non-consecutive group of registers represented by a PARALLEL into
a non-consecutive group of registers represented by a PARALLEL. */
@@ -142,7 +142,7 @@ extern rtx emit_group_move_into_temps (rtx);
/* Store a BLKmode value from non-consecutive registers represented by a
PARALLEL. */
-extern void emit_group_store (rtx, rtx, tree, int);
+extern void emit_group_store (rtx, rtx, tree, poly_int64);
extern rtx maybe_emit_group_store (rtx, tree);