]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/gcc.c-torture/execute/20020321-1.c
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 20020321-1.c
diff --git a/gcc/testsuite/gcc.c-torture/execute/20020321-1.c b/gcc/testsuite/gcc.c-torture/execute/20020321-1.c
deleted file mode 100644 (file)
index d06dd0a..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-/* PR 3177 */
-/* Produced a SIGILL on ia64 with sibcall from F to G.  We hadn't
-   widened the register window to allow for the fourth outgoing
-   argument as an "in" register.  */
-
-float g (void *a, void *b, int e, int c, float d)
-{
-  return d;
-}
-
-float f (void *a, void *b, int c, float d)
-{
-  return g (a, b, 0, c, d);
-}
-
-int main ()
-{
-  f (0, 0, 1, 1);
-  return 0;
-}