aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.2.1-5666.3/libgomp/testsuite/libgomp.c/nestedfn-2.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.2.1-5666.3/libgomp/testsuite/libgomp.c/nestedfn-2.c')
-rw-r--r--gcc-4.2.1-5666.3/libgomp/testsuite/libgomp.c/nestedfn-2.c20
1 files changed, 0 insertions, 20 deletions
diff --git a/gcc-4.2.1-5666.3/libgomp/testsuite/libgomp.c/nestedfn-2.c b/gcc-4.2.1-5666.3/libgomp/testsuite/libgomp.c/nestedfn-2.c
deleted file mode 100644
index fdbbe0f73..000000000
--- a/gcc-4.2.1-5666.3/libgomp/testsuite/libgomp.c/nestedfn-2.c
+++ /dev/null
@@ -1,20 +0,0 @@
-/* { dg-do run } */
-
-extern void abort (void);
-
-int
-main (void)
-{
- int i;
- void
- foo (void)
- {
-#pragma omp master
- i += 8;
- }
- i = 4;
- foo ();
- if (i != 12)
- abort ();
- return 0;
-}