]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
m68k.c (m68k_output_mi_thunk): Use jmp, not jsr.
authorPaul Brook <paul@codesourcery.com>
Wed, 4 Jan 2006 16:38:00 +0000 (16:38 +0000)
committerPaul Brook <pbrook@gcc.gnu.org>
Wed, 4 Jan 2006 16:38:00 +0000 (16:38 +0000)
2006-01-04  Paul Brook  <paul@codesourcery.com>

* config/m68k/m68k.c (m68k_output_mi_thunk): Use jmp, not jsr.

From-SVN: r109338

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

index 18e615175bbc55683f4783e48d83290a3d396430..ce301bae890e87a82e39f4df50fa01155d2c66dd 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 0eb4736dcf37829e5dbb151dc816e7770e473735..0f3c2d04f7e2588faf7bd0474f016c1d61692d80 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
     {