diff options
author | Richard Henderson <rth@redhat.com> | 1999-08-08 17:27:23 +0000 |
---|---|---|
committer | Richard Henderson <rth@redhat.com> | 1999-08-08 17:27:23 +0000 |
commit | 1eb7027ca25021316b1501928e74854c7551d913 (patch) | |
tree | f1004e88b78a12718cbe29ef489471a3e24c69c9 | |
parent | 74eeebeafb03e8c78cdccfd93342f37fad429b10 (diff) | |
download | gdb-1eb7027ca25021316b1501928e74854c7551d913.zip gdb-1eb7027ca25021316b1501928e74854c7551d913.tar.gz gdb-1eb7027ca25021316b1501928e74854c7551d913.tar.bz2 |
* config/tc-sparc.c (sparc_ip): Allow assembly of %lo()+%reg.
-rw-r--r-- | gas/ChangeLog | 4 | ||||
-rw-r--r-- | gas/config/tc-sparc.c | 5 |
2 files changed, 8 insertions, 1 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index 0537124..9c06105 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,7 @@ +1999-08-08 Jakub Jelinek <jj@ultra.linux.cz> + + * config/tc-sparc.c (sparc_ip): Allow assembly of %lo()+%reg. + 1999-08-08 Ian Lance Taylor <ian@zembu.com> * Makefile.am: Change all uses of itbl-test-ops to itbl-tops to diff --git a/gas/config/tc-sparc.c b/gas/config/tc-sparc.c index a7bcae6..d9d7b5c 100644 --- a/gas/config/tc-sparc.c +++ b/gas/config/tc-sparc.c @@ -2159,7 +2159,10 @@ sparc_ip (str, pinsn) if (s1) { *s1 = '\0'; - (void) get_expression (s); + if (op_arg && s1 == s + 1) + the_insn.exp.X_op = O_absent; + else + (void) get_expression (s); *s1 = '+'; if (op_arg) *s = ')'; |