diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index 2f9b251c5627..acc64352947e 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,12 @@ +2007-03-11 Mark Mitchell + + PR c++/31038 + * parser.c (cp_parser_postfix_expression): Disallow compound + literals in constant expressions. + + PR c++/30328 + * semantics.c (finish_typeof): Use unlowered_expr_type. + 2007-03-10 Mark Mitchell PR c++/30274 diff --git a/gcc/cp/parser.c b/gcc/cp/parser.c index f81fbdf59047..54c7668a50d7 100644 --- a/gcc/cp/parser.c +++ b/gcc/cp/parser.c @@ -4343,6 +4343,21 @@ cp_parser_postfix_expression (cp_parser *parser, bool address_p, bool cast_p) allowed in standard C++. */ if (pedantic) pedwarn ("ISO C++ forbids compound-literals"); + /* For simplicitly, we disallow compound literals in + constant-expressions for simpliicitly. We could + allow compound literals of integer type, whose + initializer was a constant, in constant + expressions. Permitting that usage, as a further + extension, would not change the meaning of any + currently accepted programs. (Of course, as + compound literals are not part of ISO C++, the + standard has nothing to say.) */ + if (cp_parser_non_integral_constant_expression + (parser, "non-constant compound literals")) + { + postfix_expression = error_mark_node; + break; + } /* Form the representation of the compound-literal. */ postfix_expression = finish_compound_literal (type, initializer_list); diff --git a/gcc/cp/semantics.c b/gcc/cp/semantics.c index f63ed2f47f7e..e016b0a40dec 100644 --- a/gcc/cp/semantics.c +++ b/gcc/cp/semantics.c @@ -2927,7 +2927,7 @@ finish_typeof (tree expr) return type; } - type = TREE_TYPE (expr); + type = unlowered_expr_type (expr); if (!type || type == unknown_type_node) { diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 2276ea07135a..fb51c23ea0cb 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,11 @@ +2007-03-11 Mark Mitchell + + PR c++/31038 + * g++.dg/template/complit2.C: New test. + + PR c++/30328 + * g++.dg/ext/bitfield1.C: New test. + 2007-03-11 Paul Thomas PR fortran/30883 diff --git a/gcc/testsuite/g++.dg/ext/bitfield1.C b/gcc/testsuite/g++.dg/ext/bitfield1.C new file mode 100644 index 000000000000..25c90df4191b --- /dev/null +++ b/gcc/testsuite/g++.dg/ext/bitfield1.C @@ -0,0 +1,22 @@ +// PR c++/30328 +// { dg-do link } +// { dg-options "" } + +struct S +{ + signed int a:17; +} x; + +typedef typeof (x.a) foo; + +template +T* inc(T* p) { return p+1; } + +int main () +{ + foo x[2] = { 1,2 }; + int y[2] = { 1,2 }; + *inc(x); + *inc(y); + return 0; +} diff --git a/gcc/testsuite/g++.dg/template/complit2.C b/gcc/testsuite/g++.dg/template/complit2.C new file mode 100644 index 000000000000..cf3856d474e7 --- /dev/null +++ b/gcc/testsuite/g++.dg/template/complit2.C @@ -0,0 +1,17 @@ +// PR c++/31038 +// { dg-options "" } + +template void foo() +{ + int i = (int) { 0 }; +} + +template void foo<0>(); +int f(); + +template void bar() +{ + int i = (int) { f() }; +} + +template void bar<0>();