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]

Re: ia64 cond_exec


Thanks.  I have checked in this patch to fix the problem.

Mon May  8 17:16:48 2000  Jim Wilson  <wilson@cygnus.com>

	* config/ia64/ia64.h (RETURN_ADDR_RTX): Use COUNT not count.

Index: ia64.h
===================================================================
RCS file: /cvs/gcc/egcs/gcc/config/ia64/ia64.h,v
retrieving revision 1.13
diff -p -r1.13 ia64.h
*** ia64.h	2000/05/07 01:56:25	1.13
--- ia64.h	2000/05/09 00:16:38
*************** enum reg_class
*** 1141,1147 ****
     address would be in b0 (rp).  */
  
  #define RETURN_ADDR_RTX(COUNT, FRAMEADDR) \
!   ((count == 0)								\
     ? gen_rtx_REG (Pmode, RETURN_ADDRESS_REGNUM)				\
     : (rtx) 0)
  
--- 1141,1147 ----
     address would be in b0 (rp).  */
  
  #define RETURN_ADDR_RTX(COUNT, FRAMEADDR) \
!   (((COUNT) == 0)							\
     ? gen_rtx_REG (Pmode, RETURN_ADDRESS_REGNUM)				\
     : (rtx) 0)
  

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