]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
decl.c (check_initializer): Remove dead code.
authorPaolo Carlini <paolo.carlini@oracle.com>
Fri, 7 Mar 2014 14:19:53 +0000 (14:19 +0000)
committerPaolo Carlini <paolo@gcc.gnu.org>
Fri, 7 Mar 2014 14:19:53 +0000 (14:19 +0000)
2014-03-07  Paolo Carlini  <paolo.carlini@oracle.com>

* decl.c (check_initializer): Remove dead code.

From-SVN: r208402

gcc/cp/ChangeLog
gcc/cp/decl.c

index 4aa9c2b75118348f15549eeae4f8428aaa8935fd..3c288c09efa5103e428d09ab51eb50398aa4c06b 100644 (file)
@@ -1,3 +1,7 @@
+2014-03-07  Paolo Carlini  <paolo.carlini@oracle.com>
+
+       * decl.c (check_initializer): Remove dead code.
+
 2014-03-06  Marek Polacek  <polacek@redhat.com>
 
        PR c/60197
index db86d97278396f7f3e5eacb3291591adcfd6d5ef..cd2cc9cfdd70b44e8c77d62fb650a16691e006aa 100644 (file)
@@ -5603,7 +5603,6 @@ check_initializer (tree decl, tree init, int flags, vec<tree, va_gc> **cleanups)
 {
   tree type = TREE_TYPE (decl);
   tree init_code = NULL;
-  tree extra_init = NULL_TREE;
   tree core_type;
 
   /* Things that are going to be initialized need to have complete
@@ -5799,9 +5798,6 @@ check_initializer (tree decl, tree init, int flags, vec<tree, va_gc> **cleanups)
   if (init && init != error_mark_node)
     init_code = build2 (INIT_EXPR, type, decl, init);
 
-  if (extra_init)
-    init_code = add_stmt_to_compound (extra_init, init_code);
-
   if (init_code && DECL_IN_AGGR_P (decl))
     {
       static int explained = 0;