diff options
author | Alexandre Oliva <aoliva@redhat.com> | 2000-04-05 09:36:19 +0000 |
---|---|---|
committer | Alexandre Oliva <aoliva@redhat.com> | 2000-04-05 09:36:19 +0000 |
commit | 90cd735643e51ca1538bef1df3436b7e3f024b0b (patch) | |
tree | 5760c4332fa7fb61b03c6fdfc23bf312a7a489ea /gas | |
parent | 7b67f5f425152b0f093f042e30870d1d016de9bd (diff) | |
download | gdb-90cd735643e51ca1538bef1df3436b7e3f024b0b.zip gdb-90cd735643e51ca1538bef1df3436b7e3f024b0b.tar.gz gdb-90cd735643e51ca1538bef1df3436b7e3f024b0b.tar.bz2 |
* config/tc-sparc.c (sparc_ip): Avoid string pasting.
Diffstat (limited to 'gas')
-rw-r--r-- | gas/ChangeLog | 4 | ||||
-rw-r--r-- | gas/config/tc-sparc.c | 3 |
2 files changed, 5 insertions, 2 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index ab33954..0cae5c9 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,7 @@ +2000-04-05 Alexandre Oliva <oliva@lsd.ic.unicamp.br> + + * config/tc-sparc.c (sparc_ip): Avoid string pasting. + 2000-04-04 Alan Modra <alan@linuxcare.com.au> * po/gas.pot: Regenerate. diff --git a/gas/config/tc-sparc.c b/gas/config/tc-sparc.c index 1e72300..149610e 100644 --- a/gas/config/tc-sparc.c +++ b/gas/config/tc-sparc.c @@ -1894,8 +1894,7 @@ sparc_ip (str, pinsn) if ((mask & ~1) == 2 && sparc_arch_size == 64 && no_undeclared_regs && ! globals [mask]) - as_bad (_("detected global register use not " - "covered by .register pseudo-op")); + as_bad (_("detected global register use not covered by .register pseudo-op")); /* Got the register, now figure out where it goes in the opcode. */ |