From: Jakub Jelinek Date: Mon, 21 Jan 2002 15:53:31 +0000 (+0100) Subject: i386.c (ix86_function_arg_regno_p): Never return true for 64-bit mode only SSE regist... X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=0333394edfb117c6a3b599dcc9c20ae872a2b0be;p=gcc.git i386.c (ix86_function_arg_regno_p): Never return true for 64-bit mode only SSE registers in 32-bit mode. * config/i386/i386.c (ix86_function_arg_regno_p): Never return true for 64-bit mode only SSE registers in 32-bit mode. * gcc.dg/20020218-1.c: New test. From-SVN: r49046 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index b83e503df73..be36d3197d7 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2002-01-21 Jakub Jelinek + + * config/i386/i386.c (ix86_function_arg_regno_p): Never return + true for 64-bit mode only SSE registers in 32-bit mode. + 2002-01-21 Kazu Hirata * unwind-dw2.c: Fix formatting. diff --git a/gcc/config/i386/i386.c b/gcc/config/i386/i386.c index a51990b3886..7eedba3ac70 100644 --- a/gcc/config/i386/i386.c +++ b/gcc/config/i386/i386.c @@ -1483,7 +1483,8 @@ ix86_function_arg_regno_p (regno) { int i; if (!TARGET_64BIT) - return regno < REGPARM_MAX || (TARGET_SSE && SSE_REGNO_P (regno)); + return (regno < REGPARM_MAX + || (TARGET_SSE && SSE_REGNO_P (regno) && !fixed_regs[regno])); if (SSE_REGNO_P (regno) && TARGET_SSE) return true; /* RAX is used as hidden argument to va_arg functions. */ diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 9fd7c578d72..d806caf6677 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2002-01-21 Jakub Jelinek + + * gcc.dg/20020218-1.c: New test. + 2002-01-21 David.Billinghurst * lib/prune.exp (prune_gcc_output): Prune "At global scope" diff --git a/gcc/testsuite/gcc.dg/20020218-1.c b/gcc/testsuite/gcc.dg/20020218-1.c new file mode 100644 index 00000000000..2887328d5fb --- /dev/null +++ b/gcc/testsuite/gcc.dg/20020218-1.c @@ -0,0 +1,34 @@ +/* Verify that X86-64 only SSE registers aren't restored on IA-32. */ +/* { dg-do compile { target i?86-*-* } } */ +/* { dg-options "-O2 -msse" } */ +/* { dg-final { scan-assembler-not "xmm8" } } */ + +extern void abort (void); +extern void exit (int); + +void *bar (void *p, void *q) +{ + if (p != (void *) 26 || q != (void *) 35) + abort (); + return (void *) 76; +} + +void *foo (void **args) +{ + void *argcookie = &args[1]; + + __builtin_return (__builtin_apply (args[0], &argcookie, + 2 * sizeof (void *))); +} + +int main (void) +{ + void *args[3]; + + args[0] = (void *) bar; + args[1] = (void *) 26; + args[2] = (void *) 35; + if (foo (args) != (void *) 76) + abort (); + exit (0); +}