]> gcc.gnu.org Git - gcc.git/commitdiff
sparc.c (function_arg_partial_nregs): Return 0 for all complex modes whose size is...
authorEric Botcazou <ebotcazou@libertysurf.fr>
Sun, 2 Nov 2003 08:27:23 +0000 (09:27 +0100)
committerEric Botcazou <ebotcazou@gcc.gnu.org>
Sun, 2 Nov 2003 08:27:23 +0000 (08:27 +0000)
* config/sparc/sparc.c (function_arg_partial_nregs) [TARGET_ARCH64]:
Return 0 for all complex modes whose size is lesser or equal to
a word.  Add a ??? comment for the condition used with 16-byte
aligned modes.

From-SVN: r73194

gcc/ChangeLog
gcc/config/sparc/sparc.c
gcc/testsuite/ChangeLog
gcc/testsuite/gcc.dg/complex-1.c [new file with mode: 0644]

index e7678e05fb3ab88e6819566521dfeb3fe159b29a..01a5a567b5943795cff9403d7bad0fbcd6ad5239 100644 (file)
@@ -1,3 +1,10 @@
+2003-11-02  Eric Botcazou  <ebotcazou@libertysurf.fr>
+
+       * config/sparc/sparc.c (function_arg_partial_nregs) [TARGET_ARCH64]:
+       Return 0 for all complex modes whose size is lesser or equal to
+       a word.  Add a ??? comment for the condition used with 16-byte
+       aligned modes.
+
 2003-11-01  Kelley Cook  <kcook@gcc.gnu.org>
 
        * .cvsignore: Remove c-parse* and tradcif.c.
index 1e77430f1c7a96ce636c7a032b2aa8816f8421c1..1454fd943752d400b700efc3888292bf870add50 100644 (file)
@@ -5429,14 +5429,19 @@ function_arg_partial_nregs (const struct sparc_args *cum,
              && slotno == SPARC_INT_ARG_MAX - 1)
            return 1;
        }
-      else if ((GET_MODE_CLASS (mode) == MODE_COMPLEX_INT
-               && GET_MODE_SIZE (mode) > UNITS_PER_WORD)
+      else if (GET_MODE_CLASS (mode) == MODE_COMPLEX_INT
               || (GET_MODE_CLASS (mode) == MODE_COMPLEX_FLOAT
                   && ! (TARGET_FPU && named)))
        {
+         /* The complex types are passed as packed types.  */
+         if (GET_MODE_SIZE (mode) <= UNITS_PER_WORD)
+           return 0;
+
          if (GET_MODE_ALIGNMENT (mode) == 128)
            {
              slotno += slotno & 1;
+
+             /* ??? The mode needs 3 slots?  */
              if (slotno == SPARC_INT_ARG_MAX - 2)
                return 1;
            }
index 891ec3336270034326ac8c3a2f66a284f881dbaa..599563b14f27a7682cc0c74fc13217b987519f5d 100644 (file)
@@ -1,3 +1,7 @@
+2003-11-02  Eric Botcazou  <ebotcazou@libertysurf.fr>
+
+       * gcc.dg/complex-1.c: New test.
+
 2003-11-01  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
 
        PR c++/12796
diff --git a/gcc/testsuite/gcc.dg/complex-1.c b/gcc/testsuite/gcc.dg/complex-1.c
new file mode 100644 (file)
index 0000000..7153433
--- /dev/null
@@ -0,0 +1,31 @@
+/* { dg-do run } */
+/* { dg-options "-O" } */
+
+/* Verify that the 6th complex floating-point argument is
+   correctly passed as unnamed argument on SPARC64.  */
+
+extern void abort(void);   
+
+void foo(long arg1, long arg2, long arg3, long arg4, long arg5, ...)
+{
+  __builtin_va_list ap;
+  _Complex float cf;
+
+  __builtin_va_start(ap, arg5);
+  cf = __builtin_va_arg(ap, _Complex float);
+  __builtin_va_end(ap);
+
+  if (__imag__ cf != 2.0f)
+    abort();
+}
+
+int bar(long arg1, long arg2, long arg3, long arg4, long arg5, _Complex float arg6)
+{
+  foo(arg1, arg2, arg3, arg4, arg5, arg6);
+  return 0;
+}
+
+int main(void)
+{
+  return bar(0, 0, 0, 0, 0, 2.0fi);
+}
This page took 0.102997 seconds and 5 git commands to generate.