diff options
author | Jeff Law <law@redhat.com> | 1998-03-20 16:04:15 +0000 |
---|---|---|
committer | Jeff Law <law@redhat.com> | 1998-03-20 16:04:15 +0000 |
commit | 981ce1861f2e094db3bf6acb6c4aa56b36e8f2bc (patch) | |
tree | 2ffdb881e981d4c9dd3457b0e2ab0f32ab204aac /gas | |
parent | 5a06c16d2a192476d57e2cf42fd35d20a7c111af (diff) | |
download | gdb-981ce1861f2e094db3bf6acb6c4aa56b36e8f2bc.zip gdb-981ce1861f2e094db3bf6acb6c4aa56b36e8f2bc.tar.gz gdb-981ce1861f2e094db3bf6acb6c4aa56b36e8f2bc.tar.bz2 |
* config/tc-mips.c: Change '%' to '#' in r5900 code to avoid conflict
with vr5400 support.
Diffstat (limited to 'gas')
-rw-r--r-- | gas/ChangeLog | 7 | ||||
-rw-r--r-- | gas/config/tc-mips.c | 4 |
2 files changed, 9 insertions, 2 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index 7f1f3a2..7774bad 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,10 @@ +start-sanitize-r5900 +Fri Mar 20 09:04:13 1998 Jeffrey A Law (law@cygnus.com) + + * config/tc-mips.c: Change '%' to '#' in r5900 code to avoid conflict + with vr5400 support. + +end-sanitize-r5900 Thu Mar 19 16:03:12 1998 Nick Clifton <nickc@cygnus.com> * config/tc-arm.c (md_apply_fix3): fix code to test the range of diff --git a/gas/config/tc-mips.c b/gas/config/tc-mips.c index ca8ac12..e5801c6 100644 --- a/gas/config/tc-mips.c +++ b/gas/config/tc-mips.c @@ -7203,8 +7203,8 @@ mips_ip (str, ip) as_bad ("expected vi19"); continue; - case '%': /* escape character */ - /* '%' specifies that we've got an optional suffix to this + case '#': /* escape character */ + /* '#' specifies that we've got an optional suffix to this operand that must match exactly (if it exists). */ if (*s != '\0' && *s != ',' && *s != ' ' && *s != '\t' && *s != '\n') |