summaryrefslogtreecommitdiff
path: root/gcc/ipa-param-manipulation.h
diff options
context:
space:
mode:
authorRichard Sandiford <richard.sandiford@linaro.org>2017-12-20 12:54:55 +0000
committerRichard Sandiford <rsandifo@gcc.gnu.org>2017-12-20 12:54:55 +0000
commit80d0198b739660305da17e12072578b7a99cb777 (patch)
tree2b56e16dd6fb7e90402b63ade8a9ac88011615d0 /gcc/ipa-param-manipulation.h
parent21810de45dcfec0ac4141dfa6a59e0f0859aed3e (diff)
poly_int: ipa_parm_adjustment
This patch changes the type of ipa_parm_adjustment::offset from HOST_WIDE_INT to poly_int64 and updates uses accordingly. 2017-12-20 Richard Sandiford <richard.sandiford@linaro.org> Alan Hayward <alan.hayward@arm.com> David Sherwood <david.sherwood@arm.com> gcc/ * ipa-param-manipulation.h (ipa_parm_adjustment::offset): Change from HOST_WIDE_INT to poly_int64_pod. * ipa-param-manipulation.c (ipa_modify_call_arguments): Track polynomail parameter offsets. Co-Authored-By: Alan Hayward <alan.hayward@arm.com> Co-Authored-By: David Sherwood <david.sherwood@arm.com> From-SVN: r255885
Diffstat (limited to 'gcc/ipa-param-manipulation.h')
-rw-r--r--gcc/ipa-param-manipulation.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/ipa-param-manipulation.h b/gcc/ipa-param-manipulation.h
index 364e4489c29..7bf942fe2c3 100644
--- a/gcc/ipa-param-manipulation.h
+++ b/gcc/ipa-param-manipulation.h
@@ -84,7 +84,7 @@ struct ipa_parm_adjustment
/* Offset into the original parameter (for the cases when the new parameter
is a component of an original one). */
- HOST_WIDE_INT offset;
+ poly_int64_pod offset;
/* Zero based index of the original parameter this one is based on. */
int base_index;