OSDN Git Service

2006-01-04 Paul Brook <paul@codesourcery.com>
authorpbrook <pbrook@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 4 Jan 2006 16:38:00 +0000 (16:38 +0000)
committerpbrook <pbrook@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 4 Jan 2006 16:38:00 +0000 (16:38 +0000)
* 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

gcc/ChangeLog
gcc/config/m68k/m68k.c

index 18e6151..ce301ba 100644 (file)
@@ -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
index 0eb4736..0f3c2d0 100644 (file)
@@ -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
     {