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]

patch for ia64.h typos


This fixes obvious typos in the REDO_SECTION_INFO_P macro.

2000-08-21  Graham Stott  <grahams@cygnus.co.uk>

	* config/ia64/ia64.h (REDO_SECTION_INFO_P): Change decl to DECL.

Index: ia64.h
===================================================================
RCS file: /cvs/gcc/egcs/gcc/config/ia64/ia64.h,v
retrieving revision 1.37
diff -p -r1.37 ia64.h
*** ia64.h	2000/08/19 07:15:08	1.37
--- ia64.h	2000/08/22 00:02:29
*************** do {									\
*** 1931,1938 ****
  
  #define REDO_SECTION_INFO_P(DECL)					\
     ((TREE_CODE (DECL) == VAR_DECL)					\
!     && (DECL_ONE_ONLY (decl) || DECL_WEAK (decl) || DECL_COMMON (decl)	\
! 	|| DECL_SECTION_NAME (decl) != 0))
  
  #define SDATA_NAME_FLAG_CHAR '@'
  
--- 1931,1938 ----
  
  #define REDO_SECTION_INFO_P(DECL)					\
     ((TREE_CODE (DECL) == VAR_DECL)					\
!     && (DECL_ONE_ONLY (DECL) || DECL_WEAK (DECL) || DECL_COMMON (DECL)	\
! 	|| DECL_SECTION_NAME (DECL) != 0))
  
  #define SDATA_NAME_FLAG_CHAR '@'
  

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