projects
/
binutils-gdb.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
22ba90c
)
Correct last change
author
Ian Lance Taylor
<ian@airs.com>
Wed, 5 Jul 1995 16:25:44 +0000
(16:25 +0000)
committer
Ian Lance Taylor
<ian@airs.com>
Wed, 5 Jul 1995 16:25:44 +0000
(16:25 +0000)
gas/config/tc-mips.c
patch
|
blob
|
history
diff --git
a/gas/config/tc-mips.c
b/gas/config/tc-mips.c
index dd418f9703919e1d8f548761350b1ddb1ad21fda..e463d8bd2d9faa84ef26c4dc3f3aa0920b31ad77 100644
(file)
--- 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] == '$';
}
\f
#if defined (OBJ_ELF) || defined (OBJ_MAYBE_ELF)