diff options
author | Ian Lance Taylor <ian@airs.com> | 1995-07-05 16:25:44 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1995-07-05 16:25:44 +0000 |
commit | 3af584b4a16be2ddfb92fc52ec491ba181572967 (patch) | |
tree | b700d48c3dffb62a49406b849cba221c78b6bc67 /gas | |
parent | 22ba90ce857a55522551a6dd06410534d0b02fd2 (diff) | |
download | gdb-3af584b4a16be2ddfb92fc52ec491ba181572967.zip gdb-3af584b4a16be2ddfb92fc52ec491ba181572967.tar.gz gdb-3af584b4a16be2ddfb92fc52ec491ba181572967.tar.bz2 |
Correct last change
Diffstat (limited to 'gas')
-rw-r--r-- | gas/config/tc-mips.c | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/gas/config/tc-mips.c b/gas/config/tc-mips.c index dd418f9..e463d8b 100644 --- a/gas/config/tc-mips.c +++ b/gas/config/tc-mips.c @@ -6769,18 +6769,7 @@ mips_local_label (name) /* Here it's OK to discard local labels. */ - if (name[0] == '$') - return 1; - -#ifdef TE_IRIX - /* gcc for the SGI generates a bunch of local labels named LM%d. I - don't know why they don't start with '$'. We must check specially - for these. */ - if (name[0] == 'L' && name[1] == 'M') - return 1; -#endif - - return 0; + return name[0] == '$'; } #if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF) |