diff options
-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 7a84569..9231d2f 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,7 @@ +Wed Apr 5 06:35:45 2000 Alexandre Oliva <oliva@lsd.ic.unicamp.br> + + * config/tc-sparc.c (sparc_ip): Avoid string pasting. + Tue Apr 4 19:27:50 2000 Hans-Peter Nilsson <hp@axis.com> * internals.texi (CPU backend): Document 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. */ |