diff options
author | Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE> | 2010-07-12 15:30:50 +0000 |
---|---|---|
committer | Rainer Orth <ro@gcc.gnu.org> | 2010-07-12 15:30:50 +0000 |
commit | e2b4f10338578f4fb49e7b47ced0c4178017b17c (patch) | |
tree | b0209de8a14add6ad133c69637c912efbd3e9256 /gcc/config/i386/sol2.h | |
parent | 04a17bb6ed69f59efbffbe5ace2ea82b2e4590c7 (diff) | |
download | gcc-e2b4f10338578f4fb49e7b47ced0c4178017b17c.zip gcc-e2b4f10338578f4fb49e7b47ced0c4178017b17c.tar.gz gcc-e2b4f10338578f4fb49e7b47ced0c4178017b17c.tar.bz2 |
i386.c (ix86_sol10_return_in_memory): Rename to ix86_solaris_return_in_memory.
* config/i386/i386.c (ix86_sol10_return_in_memory): Rename to
ix86_solaris_return_in_memory.
* config/i386-protos.h: Reflect this.
* config/i386/vx-common.h (SUBTARGET_RETURN_IN_MEMORY): Likewise.
* config/i386/sol2-10.h (SUBTARGET_RETURN_IN_MEMORY): Likewise.
Move ...
* config/i386/sol2.h (SUBTARGET_RETURN_IN_MEMORY): ... here.
From-SVN: r162082
Diffstat (limited to 'gcc/config/i386/sol2.h')
-rw-r--r-- | gcc/config/i386/sol2.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gcc/config/i386/sol2.h b/gcc/config/i386/sol2.h index e4595e0..57f75ea 100644 --- a/gcc/config/i386/sol2.h +++ b/gcc/config/i386/sol2.h @@ -140,6 +140,10 @@ along with GCC; see the file COPYING3. If not see /* Register the Solaris-specific #pragma directives. */ #define REGISTER_SUBTARGET_PRAGMAS() solaris_register_pragmas () +#undef SUBTARGET_RETURN_IN_MEMORY +#define SUBTARGET_RETURN_IN_MEMORY(TYPE, FNTYPE) \ + ix86_solaris_return_in_memory (TYPE, FNTYPE) + /* Output a simple call for .init/.fini. */ #define ASM_OUTPUT_CALL(FILE, FN) \ do \ |