diff options
author | Ken Raeburn <raeburn@cygnus> | 1995-05-02 04:47:35 +0000 |
---|---|---|
committer | Ken Raeburn <raeburn@cygnus> | 1995-05-02 04:47:35 +0000 |
commit | 91a165d12e13748070ed2d6b2e4bf61e11c515cb (patch) | |
tree | 14cfcb88498f93e9bac5f1a3e3926efe3c236d2d /gas/config | |
parent | 12aab635e00ab7611c8a17de0add6cfccfe3668f (diff) | |
download | gdb-91a165d12e13748070ed2d6b2e4bf61e11c515cb.zip gdb-91a165d12e13748070ed2d6b2e4bf61e11c515cb.tar.gz gdb-91a165d12e13748070ed2d6b2e4bf61e11c515cb.tar.bz2 |
delete some unused TE_* macros
Diffstat (limited to 'gas/config')
-rw-r--r-- | gas/config/te-delta.h | 4 | ||||
-rw-r--r-- | gas/config/te-generic.h | 17 | ||||
-rw-r--r-- | gas/config/te-go32.h | 11 | ||||
-rw-r--r-- | gas/config/te-hp300.h | 15 | ||||
-rw-r--r-- | gas/config/te-ic960.h | 2 | ||||
-rw-r--r-- | gas/config/te-ppcnw.h | 2 |
6 files changed, 18 insertions, 33 deletions
diff --git a/gas/config/te-delta.h b/gas/config/te-delta.h index 558966e..bd5a9e2 100644 --- a/gas/config/te-delta.h +++ b/gas/config/te-delta.h @@ -1,6 +1,6 @@ /* Remove leading underscore from the gcc generated symbol names */ #define STRIP_UNDERSCORE -/* end of te-sysv32.h */ - #define TE_DELTA + +/* end of te-delta.h */ diff --git a/gas/config/te-generic.h b/gas/config/te-generic.h index 999a4d2..8542dd0 100644 --- a/gas/config/te-generic.h +++ b/gas/config/te-generic.h @@ -6,20 +6,13 @@ * compile, and copying as an aid for testing and porting. xoxorich. */ -#define TE_GENERIC 1 +/* Added these, because if we don't know what we're targetting we may + need an assembler version of libgcc, and that will use local + labels. */ +#define LOCAL_LABELS_DOLLAR +#define LOCAL_LABELS_FB /* these define interfaces */ #include "obj-format.h" -/* define this if you want gas to ignore the first underscore character of - each symbol */ -/* #define STRIP_UNDERSCORE */ - -/* - * Local Variables: - * comment-column: 0 - * fill-column: 131 - * End: - */ - /* end of te-generic.h */ diff --git a/gas/config/te-go32.h b/gas/config/te-go32.h new file mode 100644 index 0000000..e30eecc --- /dev/null +++ b/gas/config/te-go32.h @@ -0,0 +1,11 @@ +/* + * This file is te-go32.h + */ + +#define LOCAL_LABELS_DOLLAR +#define LOCAL_LABELS_FB + +#define TARGET_FORMAT "coff-go32" + +/* these define interfaces */ +#include "obj-format.h" diff --git a/gas/config/te-hp300.h b/gas/config/te-hp300.h index dcf0125..afc8c5e 100644 --- a/gas/config/te-hp300.h +++ b/gas/config/te-hp300.h @@ -17,24 +17,9 @@ along with GAS; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ -#define TE_HP300 1 - #define LOCAL_LABELS_DOLLAR #define LOCAL_LABELS_FB -/* Could also be : - #define S_LOCAL_NAME(s) (S_GET_NAME(s)[0] == '.' && - S_GET_NAME(s)[1] == 'L' || - S_GET_NAME(s)[1] == '.') - */ - #include "obj-format.h" -/* - * Local Variables: - * comment-column: 0 - * fill-column: 131 - * End: - */ - /* end of te-hp300.h */ diff --git a/gas/config/te-ic960.h b/gas/config/te-ic960.h index 72c1db5..2678aa1 100644 --- a/gas/config/te-ic960.h +++ b/gas/config/te-ic960.h @@ -23,8 +23,6 @@ * specific differences. */ -#define TE_IC960 1 - #define OBJ_COFF_OMIT_OPTIONAL_HEADER #define LOCAL_LABEL(name) ((name[0] =='L') \ || (name[0] =='.' \ diff --git a/gas/config/te-ppcnw.h b/gas/config/te-ppcnw.h index 7966fe9..aa26b5e 100644 --- a/gas/config/te-ppcnw.h +++ b/gas/config/te-ppcnw.h @@ -17,8 +17,6 @@ along with GAS; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ -#define TE_PPCNW - /* Added these, because if we don't know what we're targetting we may need an assembler version of libgcc, and that will use local labels. */ |