OSDN Git Service

2010-05-19 Richard Guenther <rguenther@suse.de>
authorrguenth <rguenth@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 19 May 2010 15:57:17 +0000 (15:57 +0000)
committerrguenth <rguenth@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 19 May 2010 15:57:17 +0000 (15:57 +0000)
PR lto/44196
* tree.c (find_decls_types_r): Walk BLOCKs and its vars.

* g++.dg/lto/20100519-1_0.C: New testcase.

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

gcc/ChangeLog
gcc/testsuite/ChangeLog
gcc/testsuite/g++.dg/lto/20100519-1_0.C [new file with mode: 0644]
gcc/tree.c

index ec47a66..5eb9e02 100644 (file)
@@ -1,5 +1,10 @@
 2010-05-19  Richard Guenther  <rguenther@suse.de>
 
 2010-05-19  Richard Guenther  <rguenther@suse.de>
 
+       PR lto/44196
+       * tree.c (find_decls_types_r): Walk BLOCKs and its vars.
+
+2010-05-19  Richard Guenther  <rguenther@suse.de>
+
        * doc/invoke.texi (-fwhopr): Document new optional jobs argument.
        * common.opt (fwhopr=): New.
        * opts.c (common_handle_option): Handle OPT_fwhopr.
        * doc/invoke.texi (-fwhopr): Document new optional jobs argument.
        * common.opt (fwhopr=): New.
        * opts.c (common_handle_option): Handle OPT_fwhopr.
index 12f4e3c..4de8c08 100644 (file)
@@ -1,3 +1,8 @@
+2010-05-19  Richard Guenther  <rguenther@suse.de>
+
+       PR lto/44196
+       * g++.dg/lto/20100519-1_0.C: New testcase.
+
 2010-05-19  Daniel Franke  <franke.daniel@gmail.com>
 
        PR fortran/42360
 2010-05-19  Daniel Franke  <franke.daniel@gmail.com>
 
        PR fortran/42360
diff --git a/gcc/testsuite/g++.dg/lto/20100519-1_0.C b/gcc/testsuite/g++.dg/lto/20100519-1_0.C
new file mode 100644 (file)
index 0000000..bc2ddf1
--- /dev/null
@@ -0,0 +1,23 @@
+// { dg-lto-do link }
+
+template <typename Ordinal>
+struct DirectSerializationTraits
+{
+  static void fromCountToDirectBytes(const Ordinal count) {}
+};
+template<typename Ordinal> class SerializationTraits
+  : public DirectSerializationTraits<Ordinal> { };
+template <typename Ordinal>
+class ConstValueTypeSerializationBuffer
+{
+public:
+    ConstValueTypeSerializationBuffer(const Ordinal count)
+      {
+       typedef SerializationTraits<Ordinal> SerT;
+       SerT::fromCountToDirectBytes(count);
+      }
+};
+int main ()
+{
+  ConstValueTypeSerializationBuffer<int> charSendBuffer(1);
+}
index 76be316..fbf24b1 100644 (file)
@@ -4713,6 +4713,15 @@ find_decls_types_r (tree *tp, int *ws, void *data)
       fld_worklist_push (TREE_CHAIN (t), fld);
       *ws = 0;
     }
       fld_worklist_push (TREE_CHAIN (t), fld);
       *ws = 0;
     }
+  else if (TREE_CODE (t) == BLOCK)
+    {
+      tree tem;
+      for (tem = BLOCK_VARS (t); tem; tem = TREE_CHAIN (tem))
+       fld_worklist_push (tem, fld);
+      for (tem = BLOCK_SUBBLOCKS (t); tem; tem = BLOCK_CHAIN (tem))
+       fld_worklist_push (tem, fld);
+      fld_worklist_push (BLOCK_ABSTRACT_ORIGIN (t), fld);
+    }
 
   fld_worklist_push (TREE_TYPE (t), fld);
 
 
   fld_worklist_push (TREE_TYPE (t), fld);