check for NO_TRAMPOLINES.
authorCatherine Moore <clm@cygnus.com>
Wed, 19 Apr 2000 14:23:08 +0000 (14:23 +0000)
committerCatherine Moore <clm@gcc.gnu.org>
Wed, 19 Apr 2000 14:23:08 +0000 (10:23 -0400)
From-SVN: r33257

gcc/testsuite/gcc.c-torture/ChangeLog
gcc/testsuite/gcc.c-torture/execute/921017-1.c

index 5ae5ae669e61e658e111a9374e04c4fbff91274e..ec4f7194c33878ef2c1380778f40a551a1c65093 100644 (file)
@@ -1,3 +1,7 @@
+Wed Apr 19 09:16:32 2000  Catherine Moore  <clm@cygnus.com>
+
+       * execute/921017-1.c: Check for NO_TRAMPOLINES.
+
 2000-04-19  Greg McGary  <gkm@gnu.org>
 
        * execute/20000419-1.c: New test for arg clobbering with
index 3a0db5c4d568d6e353f47395760215a60af62f4d..ab68fc084981a276e0d645322dd1b826391a56d5 100644 (file)
@@ -10,6 +10,8 @@ f(n)
 }
 main()
 {
+#ifndef NO_TRAMPOLINES
   if(f(2)!=4711)abort();
+#endif
   exit(0);
 }