diff options
Diffstat (limited to 'gas/config/tc-ia64.c')
-rw-r--r-- | gas/config/tc-ia64.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/gas/config/tc-ia64.c b/gas/config/tc-ia64.c index 7b582aa..7a8d5f5 100644 --- a/gas/config/tc-ia64.c +++ b/gas/config/tc-ia64.c @@ -10721,3 +10721,14 @@ ia64_elf_section_change_hook (void) { dot_byteorder (-1); } + +/* Check if a label should be made global. */ +void +ia64_check_label (symbolS *label) +{ + if (*input_line_pointer == ':') + { + S_SET_EXTERNAL (label); + input_line_pointer++; + } +} |