diff options
Diffstat (limited to 'gas/config/tc-mips.c')
-rw-r--r-- | gas/config/tc-mips.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gas/config/tc-mips.c b/gas/config/tc-mips.c index 1c5dc7a..0f0ace5 100644 --- a/gas/config/tc-mips.c +++ b/gas/config/tc-mips.c @@ -16454,9 +16454,13 @@ s_mips_globl (int x ATTRIBUTE_UNUSED) *input_line_pointer = c; SKIP_WHITESPACE_AFTER_NAME (); +#ifdef TE_IRIX /* On Irix 5, every global symbol that is not explicitly labelled as being a function is apparently labelled as being an object. */ flag = BSF_OBJECT; +#else + flag = BSF_NO_FLAGS; +#endif if (!is_end_of_line[(unsigned char) *input_line_pointer] && (*input_line_pointer != ',')) |