mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-21 01:12:32 +08:00
9777b772c8
them to zero. * config/tc-*.h, config/te-*.h: If defining them, define them to be 1 instead of empty. * expr.c (integer_constant, operand): Test them at run time instead of compile time. * read.c (read_a_source_file): Ditto. * symbols.c (colon): Ditto. (dollar_*, define_dollar_label, fb_*): Define unconditionally. * symbols.h (dollar_*, define_dollar_label, fb_*): Declare unconditionally.
19 lines
558 B
C
19 lines
558 B
C
/*
|
|
* This file is te-generic.h and is intended to be a template for
|
|
* target environment specific header files.
|
|
*
|
|
* It is my intent that this file will evolve into a file suitable for config,
|
|
* compile, and copying as an aid for testing and porting. xoxorich.
|
|
*/
|
|
|
|
/* 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 1
|
|
#define LOCAL_LABELS_FB 1
|
|
|
|
/* these define interfaces */
|
|
#include "obj-format.h"
|
|
|
|
/* end of te-generic.h */
|