OSDN Git Service

check for NO_TRAMPOLINES.
authorclm <clm@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 19 Apr 2000 14:23:08 +0000 (14:23 +0000)
committerclm <clm@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 19 Apr 2000 14:23:08 +0000 (14:23 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@33257 138bc75d-0d04-0410-961f-82ee72b054a4

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

index 5ae5ae6..ec4f719 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 3a0db5c..ab68fc0 100644 (file)
@@ -10,6 +10,8 @@ f(n)
 }
 main()
 {
+#ifndef NO_TRAMPOLINES
   if(f(2)!=4711)abort();
+#endif
   exit(0);
 }