From 8e05e5dde2668819a939cae3f9d702f206deb674 Mon Sep 17 00:00:00 2001 From: Michael Meissner Date: Tue, 19 Dec 1995 15:56:45 +0000 Subject: [PATCH] Do not define register names under Windows NT From-SVN: r10816 --- gcc/ginclude/ppc-asm.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/gcc/ginclude/ppc-asm.h b/gcc/ginclude/ppc-asm.h index 383f4c25831..182b91731bf 100644 --- a/gcc/ginclude/ppc-asm.h +++ b/gcc/ginclude/ppc-asm.h @@ -12,6 +12,11 @@ * they apply. */ + +/* Under winnt, 1) gas suppports the following as names and 2) in particular + defining "toc" breaks the FUNC_START macro as ".toc" becomes ".2" */ + +#if !defined(__WINNT__) #define r0 0 #define sp 1 #define toc 2 @@ -44,6 +49,7 @@ #define r29 29 #define r30 30 #define r31 31 +#endif /* * Macros to glue together two tokens. -- 2.30.2