diff options
author | Ian Lance Taylor <ian@airs.com> | 1993-12-01 19:26:45 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1993-12-01 19:26:45 +0000 |
commit | 4032d3f09ec127390e221393e85bbbc54cd7f5e4 (patch) | |
tree | 5d6a84db3bfd0793631317be0e20ff9c761fb314 | |
parent | 44c0de5363793711b81587e5865d47c437c92387 (diff) | |
download | gdb-4032d3f09ec127390e221393e85bbbc54cd7f5e4.zip gdb-4032d3f09ec127390e221393e85bbbc54cd7f5e4.tar.gz gdb-4032d3f09ec127390e221393e85bbbc54cd7f5e4.tar.bz2 |
* config/tc-mips.c (macro): From wilson@cygnus.com: for M_L_DAB,
set coproc before doing goto ld.
-rw-r--r-- | gas/ChangeLog | 3 | ||||
-rw-r--r-- | gas/config/tc-mips.c | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index 33a1b96..ee8e4c7 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -6,7 +6,8 @@ Wed Dec 1 10:41:56 1993 Jeffrey A. Law (law@snake.cs.utah.edu) Wed Dec 1 12:10:41 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com) * config/tc-mips.c (macro): Subtract 8 from offset in non PIC l.d - case. See comment. + case. See comment. From wilson@cygnus.com: for M_L_DAB, set + coproc before doing goto ld. Tue Nov 30 13:40:30 1993 Jeffrey A. Law (law@snake.cs.utah.edu) diff --git a/gas/config/tc-mips.c b/gas/config/tc-mips.c index a39f6d6..d5b5cb9 100644 --- a/gas/config/tc-mips.c +++ b/gas/config/tc-mips.c @@ -2898,6 +2898,7 @@ macro (ip) * But, the resulting address is the same after relocation so why * generate the extra instruction? */ + coproc = 1; if (mips_isa >= 2) { s = "ldc1"; @@ -2906,7 +2907,6 @@ macro (ip) s = "lwc1"; fmt = "T,o(b)"; - coproc = 1; goto ldd_std; case M_S_DAB: |