From 942f4a0fa1edb85f3d5b67abe6712e5813bd67fe Mon Sep 17 00:00:00 2001 From: Jiong Wang Date: Tue, 17 Jun 2014 21:34:36 +0100 Subject: [PATCH 02/19] [AArch64/GCC][2/20] Let parameter type be consistent This patch change the type of "start_offset" to HOST_WIDE_INT to be consistent with all other code 2014-06-16 Jiong Wang Marcus Shawcroft gcc/ * config/aarch64/aarch64.c (aarch64_save_or_restore_fprs): Change type to HOST_WIDE_INT. --- gcc/config/aarch64/aarch64.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/config/aarch64/aarch64.c b/gcc/config/aarch64/aarch64.c index b3989e8..a60b11b 100644 --- a/gcc/config/aarch64/aarch64.c +++ b/gcc/config/aarch64/aarch64.c @@ -1907,7 +1907,7 @@ aarch64_register_saved_on_entry (int regno) static void -aarch64_save_or_restore_fprs (int start_offset, int increment, +aarch64_save_or_restore_fprs (HOST_WIDE_INT start_offset, int increment, bool restore, rtx base_rtx) { -- 1.7.9.5