diff options
author | Michael Snyder <msnyder@vmware.com> | 2003-05-02 18:38:49 +0000 |
---|---|---|
committer | Michael Snyder <msnyder@vmware.com> | 2003-05-02 18:38:49 +0000 |
commit | 7ff0565e834b1fce331f56b1f22ac8f4cfec53a6 (patch) | |
tree | f46885341ff44f9ec0a8b1f792e851587e3ef092 | |
parent | a26d70858ef2bcd47cbf0898f69ba60d4c109aa2 (diff) | |
download | gdb-7ff0565e834b1fce331f56b1f22ac8f4cfec53a6.zip gdb-7ff0565e834b1fce331f56b1f22ac8f4cfec53a6.tar.gz gdb-7ff0565e834b1fce331f56b1f22ac8f4cfec53a6.tar.bz2 |
2003-05-02 Michael Snyder <msnyder@redhat.com>
* write.h (FAKE_LABEL_NAME): Allow override
(for targets that like eg. a leading dot in a local label).
-rw-r--r-- | gas/ChangeLog | 5 | ||||
-rw-r--r-- | gas/write.h | 2 |
2 files changed, 7 insertions, 0 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index 33db418..1e89c9f 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,8 @@ +2003-05-02 Michael Snyder <msnyder@redhat.com> + + * write.h (FAKE_LABEL_NAME): Allow override + (for targets that like eg. a leading dot in a local label). + 2003-05-02 Nick Clifton <nickc@redhat.com> * config/tc-xstormy16.c (xstormy16_md_apply_fix3): Do not bias the diff --git a/gas/write.h b/gas/write.h index 962ccd0..8a1c860 100644 --- a/gas/write.h +++ b/gas/write.h @@ -40,7 +40,9 @@ /* This is the name of a fake symbol which will never appear in the assembler output. S_IS_LOCAL detects it because of the \001. */ +#ifndef FAKE_LABEL_NAME #define FAKE_LABEL_NAME "L0\001" +#endif #include "bit_fix.h" |