diff options
author | Jeff Law <law@redhat.com> | 1993-10-31 02:18:17 +0000 |
---|---|---|
committer | Jeff Law <law@redhat.com> | 1993-10-31 02:18:17 +0000 |
commit | b309df49dc045a744c6a9ecc7892dee1705dced4 (patch) | |
tree | 581a600250f0d94ec80d018c065fb613b62a107b /gas/config | |
parent | b89094aa9184317c09dcd8cd410f4ddb548b2385 (diff) | |
download | gdb-b309df49dc045a744c6a9ecc7892dee1705dced4.zip gdb-b309df49dc045a744c6a9ecc7892dee1705dced4.tar.gz gdb-b309df49dc045a744c6a9ecc7892dee1705dced4.tar.bz2 |
* config/tc-i386.h (DOT_LABEL_PREFIX): Delete.
(LOCAL_LABEL, FAKE_LABEL_NAME): Define.
* config/tc-m68k.h (DOT_LABEL_PREFIX): Delete.
(LOCAL_LABEL, FAKE_LABEL_NAME): Define.
* config/te-sco386.h (DOT_LABEL_PREFIX): Delete.
(LOCAL_LABEL, FAKE_LABEL_NAME): Define.
Diffstat (limited to 'gas/config')
-rw-r--r-- | gas/config/te-sco386.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gas/config/te-sco386.h b/gas/config/te-sco386.h index 2c93f0b..c608f05 100644 --- a/gas/config/te-sco386.h +++ b/gas/config/te-sco386.h @@ -2,6 +2,7 @@ #define scounix /* Local labels start with a period. */ -#define DOT_LABEL_PREFIX - +#define LOCAL_LABEL(name) (name[0] == '.' \ + && (name[1] == 'L' || name[1] == '.')) +#define FAKE_LABEL_NAME ".L0\001" /* end of te-sco386.h */ |