diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1994-07-08 18:45:49 -0400 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1994-07-08 18:45:49 -0400 |
commit | 3ea5a4aeca6f443e328573ab1cdb2cb1e7ef15cc (patch) | |
tree | 4288d4000444e120cd828bff0b6cc58943549b7d /gcc | |
parent | 7597472624abf9a3e0f92d3a53d829cf38d58ccf (diff) | |
download | gcc-3ea5a4aeca6f443e328573ab1cdb2cb1e7ef15cc.zip gcc-3ea5a4aeca6f443e328573ab1cdb2cb1e7ef15cc.tar.gz gcc-3ea5a4aeca6f443e328573ab1cdb2cb1e7ef15cc.tar.bz2 |
(FUNCTION_EXTRA_EPILOGUE): Copy a0 to d0, not the other way.
From-SVN: r7690
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/config/m68k/mot3300.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/m68k/mot3300.h b/gcc/config/m68k/mot3300.h index 0de7163..341333a 100644 --- a/gcc/config/m68k/mot3300.h +++ b/gcc/config/m68k/mot3300.h @@ -108,7 +108,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ { extern int current_function_returns_pointer; \ if ((current_function_returns_pointer) && \ ! find_equiv_reg (0, get_last_insn (), 0, 0, 0, 8, Pmode)) \ - asm_fprintf (FILE, "\tmov.l %Rd0,%Ra0\n"); } + asm_fprintf (FILE, "\tmov.l %Ra0,%Rd0\n"); } #undef FUNCTION_PROFILER #define FUNCTION_PROFILER(FILE, LABEL_NO) \ |