diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2009-03-09 18:33:42 +0000 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2009-03-09 18:33:42 +0000 |
commit | f378cd831635f37f0f0022a339a74a2fbfbb3379 (patch) | |
tree | 1c74ab3fe799471417a5c9f4df531e861f765227 /gas | |
parent | c8fa6cdda407a09ab5bd2999a8fe6468b2690fb0 (diff) | |
download | gdb-f378cd831635f37f0f0022a339a74a2fbfbb3379.zip gdb-f378cd831635f37f0f0022a339a74a2fbfbb3379.tar.gz gdb-f378cd831635f37f0f0022a339a74a2fbfbb3379.tar.bz2 |
2009-03-09 H.J. Lu <hongjiu.lu@intel.com>
PR gas/9915
* config/tc-i386.h (LOCAL_LABELS_DOLLAR): New. Defined as 0.
(LOCAL_LABELS_FB): Undefine befoe define.
Diffstat (limited to 'gas')
-rw-r--r-- | gas/ChangeLog | 6 | ||||
-rw-r--r-- | gas/config/tc-i386.h | 4 |
2 files changed, 10 insertions, 0 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index 598c560..12ad646 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,9 @@ +2009-03-09 H.J. Lu <hongjiu.lu@intel.com> + + PR gas/9915 + * config/tc-i386.h (LOCAL_LABELS_DOLLAR): New. Defined as 0. + (LOCAL_LABELS_FB): Undefine befoe define. + 2009-03-06 Nick Clifton <nickc@redhat.com> * po/es.po: Updated Spanish translation. diff --git a/gas/config/tc-i386.h b/gas/config/tc-i386.h index db580d8..ea2b653 100644 --- a/gas/config/tc-i386.h +++ b/gas/config/tc-i386.h @@ -90,6 +90,10 @@ extern void i386_elf_emit_arch_note (void); #define SUB_SEGMENT_ALIGN(SEG, FRCHAIN) 0 +/* '$' may be used as immediate prefix. */ +#undef LOCAL_LABELS_DOLLAR +#define LOCAL_LABELS_DOLLAR 0 +#undef LOCAL_LABELS_FB #define LOCAL_LABELS_FB 1 extern const char extra_symbol_chars[]; |