aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/gcov/gcov-7.C
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.9/gcc/testsuite/g++.dg/gcov/gcov-7.C')
-rw-r--r--gcc-4.9/gcc/testsuite/g++.dg/gcov/gcov-7.C28
1 files changed, 0 insertions, 28 deletions
diff --git a/gcc-4.9/gcc/testsuite/g++.dg/gcov/gcov-7.C b/gcc-4.9/gcc/testsuite/g++.dg/gcov/gcov-7.C
deleted file mode 100644
index db3e95a07..000000000
--- a/gcc-4.9/gcc/testsuite/g++.dg/gcov/gcov-7.C
+++ /dev/null
@@ -1,28 +0,0 @@
-/* Check that Exception handler specification is not
- mapped to the curly braces below the function
- declaration. */
-
-/* { dg-options "-fprofile-arcs -ftest-coverage" } */
-/* { dg-do run { target native } } */
-
-struct foo
-{
- foo () throw (int)
- { /* count (-) */
- throw (1);
- }
-};
-
-int main ()
-{
- try
- {
- foo f;
- }
- catch ( ...)
- {
- return 0;
- }
-}
-
-/* { dg-final { run-gcov gcov-7.C } } */