This is the mail archive of the gcc-bugs@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]

Re: Typo in gcc/config/kfreebsdgnu.h


Santiago Vila wrote:
I'm following gcc from CVS and found this:
-#define TARET_OS_CPP_BUILTINS()				\
+#define TARGET_OS_CPP_BUILTINS()			\

Thanks. I checked this in as an obvious fix.


I did a partial cross-compiler build to verify that the patch had the intended effect.
--
Jim Wilson, GNU Tools Support, http://www.SpecifixInc.com
2003-12-17  Santiago Vila  <sanvila@unex.es>

	* config/kfreebsdgnu.h (TARGET_OS_CPP_BUILTINS): Rename from
	TARET_OS_CPP_BUILTINS.

Index: kfreebsdgnu.h
===================================================================
RCS file: /cvs/gcc/gcc/gcc/config/kfreebsdgnu.h,v
retrieving revision 1.1
diff -p -r1.1 kfreebsdgnu.h
*** kfreebsdgnu.h	21 Oct 2003 09:52:47 -0000	1.1
--- kfreebsdgnu.h	18 Dec 2003 01:46:48 -0000
*************** Boston, MA 02111-1307, USA.  */
*** 23,29 ****
  #define WCHAR_TYPE "int"
  
  #undef TARGET_OS_CPP_BUILTINS
! #define TARET_OS_CPP_BUILTINS()				\
    builtin_define ("__GNU_KFreeBSD__=0");		\
    builtin_define ("__gnu_kfreebsd__=0");		\
    builtin_define ("__FreeBSD_kernel__=5");		\
--- 23,29 ----
  #define WCHAR_TYPE "int"
  
  #undef TARGET_OS_CPP_BUILTINS
! #define TARGET_OS_CPP_BUILTINS()				\
    builtin_define ("__GNU_KFreeBSD__=0");		\
    builtin_define ("__gnu_kfreebsd__=0");		\
    builtin_define ("__FreeBSD_kernel__=5");		\

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