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]

Fix config/netbsd-aout.h



Fix a couple of bogons in this new file.

2002-01-22 Richard Earnshaw  <rearnsha@arm.com>

	* config/netbsd-aout.h (SWITCH_TAKES_ARG): Remove bogus white space
	after backslash.
	(ASM_DECLARE_OBJECT_NAME): Add missing backslash before final line.


Index: config/netbsd-aout.h
===================================================================
RCS file: /cvs/gcc/egcs/gcc/config/netbsd-aout.h,v
retrieving revision 1.1
diff -p -p -r1.1 netbsd-aout.h
*** netbsd-aout.h	2002/01/22 04:23:02	1.1
--- netbsd-aout.h	2002/01/23 01:13:25
*************** Boston, MA 02111-1307, USA.  */
*** 22,28 ****
  /* This defines which switch letters take arguments. */
  
  #undef SWITCH_TAKES_ARG
! #define SWITCH_TAKES_ARG(CHAR)		\ 
    (DEFAULT_SWITCH_TAKES_ARG(CHAR)	\
     || (CHAR) == 'R')
  
--- 22,28 ----
  /* This defines which switch letters take arguments. */
  
  #undef SWITCH_TAKES_ARG
! #define SWITCH_TAKES_ARG(CHAR)		\
    (DEFAULT_SWITCH_TAKES_ARG(CHAR)	\
     || (CHAR) == 'R')
  
*************** Boston, MA 02111-1307, USA.  */
*** 160,166 ****
  	           int_size_in_bytes (TREE_TYPE (DECL)));		\
  	}								\
        ASM_OUTPUT_LABEL(FILE, NAME);					\
!     }
    while (0)
  
  
--- 160,166 ----
  	           int_size_in_bytes (TREE_TYPE (DECL)));		\
  	}								\
        ASM_OUTPUT_LABEL(FILE, NAME);					\
!     }									\
    while (0)
  
  

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