PR c++/42061
authorjakub <jakub@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 17 Nov 2009 07:01:18 +0000 (07:01 +0000)
committerjakub <jakub@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 17 Nov 2009 07:01:18 +0000 (07:01 +0000)
* call.c (reference_binding): Return NULL for initializer list with
error operand inside of it.

* g++.dg/cpp0x/initlist27.C: New test.

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

gcc/cp/ChangeLog
gcc/cp/call.c
gcc/testsuite/ChangeLog
gcc/testsuite/g++.dg/cpp0x/initlist27.C [new file with mode: 0644]

index d1db746..4f5f9b5 100644 (file)
@@ -1,5 +1,9 @@
 2009-11-17  Jakub Jelinek  <jakub@redhat.com>
 
+       PR c++/42061
+       * call.c (reference_binding): Return NULL for initializer list with
+       error operand inside of it.
+
        PR c++/42059
        * typeck.c (cp_build_modify_expr): For initializer list call
        check_array_initializer to make sure lhs isn't a VLA.
index e4a6bca..e051e90 100644 (file)
@@ -1235,6 +1235,8 @@ reference_binding (tree rto, tree rfrom, tree expr, bool c_cast_p, int flags)
          && CONSTRUCTOR_NELTS (expr) == 1)
        {
          expr = CONSTRUCTOR_ELT (expr, 0)->value;
+         if (error_operand_p (expr))
+           return NULL;
          from = TREE_TYPE (expr);
        }
     }
index 325bcf9..f73a427 100644 (file)
@@ -1,5 +1,8 @@
 2009-11-17  Jakub Jelinek  <jakub@redhat.com>
 
+       PR c++/42061
+       * g++.dg/cpp0x/initlist27.C: New test.
+
        PR c++/42059
        * g++.dg/cpp0x/initlist26.C: New test.
 
diff --git a/gcc/testsuite/g++.dg/cpp0x/initlist27.C b/gcc/testsuite/g++.dg/cpp0x/initlist27.C
new file mode 100644 (file)
index 0000000..f8536d3
--- /dev/null
@@ -0,0 +1,5 @@
+// PR c++/42061
+// { dg-do compile }
+// { dg-options "-std=c++0x" }
+
+int& i = { j };        // { dg-error "invalid initialization|was not declared" }