diff options
author | Andreas Schwab <schwab@gcc.gnu.org> | 2009-04-21 13:50:36 +0000 |
---|---|---|
committer | Andreas Schwab <schwab@gcc.gnu.org> | 2009-04-21 13:50:36 +0000 |
commit | 2ba9daa701f829cd991006a9aa29b74b88831bc9 (patch) | |
tree | f72394567272462f378ccded33b762b75c11ea66 /gcc/config | |
parent | ad8a1ac09d45ba7a3596434b4bd38d698a87c28e (diff) | |
download | gcc-2ba9daa701f829cd991006a9aa29b74b88831bc9.zip gcc-2ba9daa701f829cd991006a9aa29b74b88831bc9.tar.gz gcc-2ba9daa701f829cd991006a9aa29b74b88831bc9.tar.bz2 |
linux.h (FINALIZE_TRAMPOLINE): Use enum for second argument of emit_library_call.
* config/m68k/linux.h (FINALIZE_TRAMPOLINE): Use enum for second
argument of emit_library_call.
From-SVN: r146525
Diffstat (limited to 'gcc/config')
-rw-r--r-- | gcc/config/m68k/linux.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/config/m68k/linux.h b/gcc/config/m68k/linux.h index 2eb4641..922856c 100644 --- a/gcc/config/m68k/linux.h +++ b/gcc/config/m68k/linux.h @@ -1,7 +1,7 @@ /* Definitions for Motorola 68k running Linux-based GNU systems with ELF format. Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2002, 2003, 2004, 2006, - 2007 Free Software Foundation, Inc. + 2007, 2009 Free Software Foundation, Inc. This file is part of GCC. @@ -209,7 +209,7 @@ along with GCC; see the file COPYING3. If not see #undef FINALIZE_TRAMPOLINE #define FINALIZE_TRAMPOLINE(TRAMP) \ emit_library_call (gen_rtx_SYMBOL_REF (Pmode, "__clear_cache"), \ - 0, VOIDmode, 2, TRAMP, Pmode, \ + LCT_NORMAL, VOIDmode, 2, TRAMP, Pmode, \ plus_constant (TRAMP, TRAMPOLINE_SIZE), Pmode); /* Clear the instruction cache from `beg' to `end'. This makes an |