This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[AArch64/GCC][2/N] Let parameter type be consistent


This patch change the type of "start_offset" to HOST_WIDE_INT
to be consistent with all other code

*no functional change*

OK to install ?

thanks.

gcc/
  * config/aarch64/aarch64.c (aarch64_save_or_restore_fprs): Change type to HOST_WIDE_INT.
>From 942f4a0fa1edb85f3d5b67abe6712e5813bd67fe Mon Sep 17 00:00:00 2001
From: Jiong Wang <jiong.wang@arm.com>
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 <jiong.wang@arm.com>
	    Marcus Shawcroft  <marcus.shawcroft@arm.com>

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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]