OSDN Git Service

gcc/testsuite/ChangeLog:
authorspark <spark@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 16 Aug 2007 17:36:01 +0000 (17:36 +0000)
committerspark <spark@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 16 Aug 2007 17:36:01 +0000 (17:36 +0000)
2007-08-16  Seongbae Park <seongbae.park@gmail.com>

        * g++.dg/gcov/gcov-5.C: New test.

gcc/cp/ChangeLog:

2007-08-16  Seongbae Park <seongbae.park@gmail.com>

        * pt.c (instantiate_decl): Set input_location
        for the function end.

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

gcc/cp/ChangeLog
gcc/cp/pt.c
gcc/testsuite/ChangeLog
gcc/testsuite/g++.dg/gcov/gcov-5.C [new file with mode: 0644]

index c2b043f..89172af 100644 (file)
@@ -1,3 +1,8 @@
+2007-08-16  Seongbae Park  <seongbae.park@gmail.com>
+
+        * pt.c (instantiate_decl): Set input_location
+        for the function end.
+
 2007-08-16  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
 
        * cp-objcp-common.c (cxx_warn_unused_global_decl, cp_expr_size):
index 68cd9a5..76d3518 100644 (file)
@@ -14440,6 +14440,10 @@ instantiate_decl (tree d, int defer_ok,
                   tf_warning_or_error, tmpl,
                   /*integral_constant_expression_p=*/false);
 
+      /* Set the current input_location to the end of the function
+         so that finish_function knows where we are.  */
+      input_location = DECL_STRUCT_FUNCTION (code_pattern)->function_end_locus;
+
       /* We don't need the local specializations any more.  */
       htab_delete (local_specializations);
       local_specializations = saved_local_specializations;
index 37532f5..2e4dfb3 100644 (file)
@@ -1,3 +1,7 @@
+2007-08-16  Seongbae Park <seongbae.park@gmail.com>
+
+        * g++.dg/gcov/gcov-5.C: New test.
+
 2007-08-16  Seongbae Park  <seongbae.park@gmail.com>
 
        * g++.dg/gcov/gcov-4.C: New test.
diff --git a/gcc/testsuite/g++.dg/gcov/gcov-5.C b/gcc/testsuite/g++.dg/gcov/gcov-5.C
new file mode 100644 (file)
index 0000000..9ada418
--- /dev/null
@@ -0,0 +1,50 @@
+/* Check that execution counts for template functions
+   are reported correctly by gcov. */
+
+#include <stdio.h>
+#include <stdlib.h>
+
+/* { dg-options "-fprofile-arcs -ftest-coverage -fno-inline" } */
+/* { dg-do run { target native } } */
+
+class A {
+  int count;
+ public:
+  A(int c) { count = c; }
+  void func(void) { printf("func\n"); }
+  bool done(void) { 
+    return (count == 0) ? true : (count-- != 0);
+  }
+  void run(void) { abort(); }
+};
+
+//typedef A T;
+template<class T>
+void WithoutBrace(T *a) {
+  while (!a->done())   
+    a->run();           /* count(#####) */
+}                       /* count(1) */
+
+template<class T>
+void WithBrace(T *a)
+{
+  while (!a->done())   
+    { 
+      a->run();         /* count(#####) */
+    }
+}                       /* count(1) */
+
+A *func(A *a)
+{
+  WithoutBrace(a);
+  WithBrace(a);
+  return a;
+}
+
+int main() {
+  A a(0);
+  func(&a);
+  return 0;
+}
+
+/* { dg-final { run-gcov gcov-5.C } } */