OSDN Git Service

* gcc.c-torture/execute/built-in-setjmp.c: Prototype stuff.
authorrth <rth@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 5 Feb 2002 06:37:02 +0000 (06:37 +0000)
committerrth <rth@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 5 Feb 2002 06:37:02 +0000 (06:37 +0000)
        (buf): Change to be an array of pointers, not ints.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@49512 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/testsuite/ChangeLog
gcc/testsuite/gcc.c-torture/execute/built-in-setjmp.c

index 6393589..a896736 100644 (file)
@@ -1,3 +1,8 @@
+2002-02-04  Richard Henderson  <rth@redhat.com>
+
+       * gcc.c-torture/execute/built-in-setjmp.c: Prototype stuff.
+       (buf): Change to be an array of pointers, not ints.
+
 2002-02-04  Jakub Jelinek  <jakub@redhat.com>
 
        * gcc.dg/Wswitch.c: Fix typos.  Don't return unconditionally
index b63c4ea..9da7878 100644 (file)
@@ -1,9 +1,20 @@
-int buf[20];
+extern int strcmp(const char *, const char *);
+extern char *strcpy(char *, const char *);
+extern void abort(void);
+extern void exit(int);
+
+void *buf[20];
+
+void __attribute__((noinline))
+sub2 (void)
+{
+  __builtin_longjmp (buf, 1);
+}
 
 int
 main ()
 {
-  char *p = (char *) alloca (20);
+  char *p = (char *) __builtin_alloca (20);
 
   strcpy (p, "test");
 
@@ -16,7 +27,7 @@ main ()
     }
 
   {
-    int *q = (int *) alloca (p[2] * sizeof (int));
+    int *q = (int *) __builtin_alloca (p[2] * sizeof (int));
     int i;
     
     for (i = 0; i < p[2]; i++)
@@ -26,8 +37,3 @@ main ()
       sub2 ();
   }
 }
-
-sub2 ()
-{
-  __builtin_longjmp (buf, 1);
-}