diff options
| author | pbrook <pbrook@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-01-04 16:38:00 +0000 |
|---|---|---|
| committer | pbrook <pbrook@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-01-04 16:38:00 +0000 |
| commit | 8bd6bfa86f696adceed3fd9e0f23216474359c08 (patch) | |
| tree | 9ae02bee2e00cbdd31405fcb06bd728720937a85 | |
| parent | 878c6b557cacf714221f9c550425779e155e2b0d (diff) | |
| download | ppe42-gcc-8bd6bfa86f696adceed3fd9e0f23216474359c08.tar.gz ppe42-gcc-8bd6bfa86f696adceed3fd9e0f23216474359c08.zip | |
2006-01-04 Paul Brook <paul@codesourcery.com>
* config/m68k/m68k.c (m68k_output_mi_thunk): Use jmp, not jsr.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@109338 138bc75d-0d04-0410-961f-82ee72b054a4
| -rw-r--r-- | gcc/ChangeLog | 4 | ||||
| -rw-r--r-- | gcc/config/m68k/m68k.c | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 18e615175bb..ce301bae890 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2006-01-04 Paul Brook <paul@codesourcery.com> + + * config/m68k/m68k.c (m68k_output_mi_thunk): Use jmp, not jsr. + 2006-01-04 Daniel Berlin <dberlin@dberlin.org> * lambda-code.c (can_put_in_inner_loop): Relax diff --git a/gcc/config/m68k/m68k.c b/gcc/config/m68k/m68k.c index 0eb4736dcf3..0f3c2d04f7e 100644 --- a/gcc/config/m68k/m68k.c +++ b/gcc/config/m68k/m68k.c @@ -1,6 +1,6 @@ /* Subroutines for insn-output.c for Motorola 68000 family. Copyright (C) 1987, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, - 2001, 2003, 2004, 2005 + 2001, 2003, 2004, 2005, 2006 Free Software Foundation, Inc. This file is part of GCC. @@ -3314,7 +3314,7 @@ m68k_output_mi_thunk (FILE *file, tree thunk ATTRIBUTE_UNUSED, else if (optimize_size || TARGET_ID_SHARED_LIBRARY) fmt = "move.l %0@GOT(%%a5), %%a1\n\tjmp (%%a1)"; else - fmt = "lea %0-.-8,%%a1\n\tjsr 0(%%pc,%%a1)"; + fmt = "lea %0-.-8,%%a1\n\tjmp 0(%%pc,%%a1)"; } else { |

