OSDN Git Service

PR c++/12515
authormmitchel <mmitchel@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 21 Nov 2003 22:16:02 +0000 (22:16 +0000)
committermmitchel <mmitchel@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 21 Nov 2003 22:16:02 +0000 (22:16 +0000)
* pt.c (build_non_dependent_expr): Handle GNU extension to ?:
operator.

PR c++/12515
* g++.dg/ext/cond1.C: New test.

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

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

index c54a982..a27679f 100644 (file)
@@ -1,3 +1,9 @@
+2003-11-21  Mark Mitchell  <mark@codesourcery.com>
+
+       PR c++/12515
+       * pt.c (build_non_dependent_expr): Handle GNU extension to ?:
+       operator.
+
 2003-11-21  Jan Hubicka  <jh@suse.cz>
 
        * parser.c (cp_parser_postfix_expression): Initialize 's' to
index 4afe974..5b96938 100644 (file)
@@ -11893,7 +11893,9 @@ build_non_dependent_expr (tree expr)
     return build (COND_EXPR,
                  TREE_TYPE (expr),
                  TREE_OPERAND (expr, 0),
-                 build_non_dependent_expr (TREE_OPERAND (expr, 1)),
+                 (TREE_OPERAND (expr, 1) 
+                  ? build_non_dependent_expr (TREE_OPERAND (expr, 1))
+                  : build_non_dependent_expr (TREE_OPERAND (expr, 0))),
                  build_non_dependent_expr (TREE_OPERAND (expr, 2)));
   if (TREE_CODE (expr) == COMPOUND_EXPR
       && !COMPOUND_EXPR_OVERLOADED (expr))
index d14e5ae..73ffd70 100644 (file)
@@ -1,3 +1,8 @@
+2003-11-21  Mark Mitchell  <mark@codesourcery.com>
+
+       PR c++/12515
+       * g++.dg/ext/cond1.C: New test.
+
 2003-11-20  Richard Henderson  <rth@redhat.com>
 
        * gcc.dg/20020201-2.c: Remove.
diff --git a/gcc/testsuite/g++.dg/ext/cond1.C b/gcc/testsuite/g++.dg/ext/cond1.C
new file mode 100644 (file)
index 0000000..ec34212
--- /dev/null
@@ -0,0 +1,4 @@
+// PR c++/12515
+// { dg-do compile }
+// { dg-options "" }
+template<int> void foo() { 0 ?: 0; }