aboutsummaryrefslogtreecommitdiff
path: root/gcc/c-common.c
diff options
context:
space:
mode:
authorSimon Martin <simartin@users.sourceforge.net>2007-06-07 19:59:33 +0000
committerSimon Martin <simartin@gcc.gnu.org>2007-06-07 19:59:33 +0000
commitc1ae8be51fb22104066600fdddeaf94b004e63c8 (patch)
treec9bfce8481cc2ab5d947f7ccd7de24217b53132e /gcc/c-common.c
parent20967296dc0517322a6058ec55491de9707c0c34 (diff)
downloadgcc-c1ae8be51fb22104066600fdddeaf94b004e63c8.zip
gcc-c1ae8be51fb22104066600fdddeaf94b004e63c8.tar.gz
gcc-c1ae8be51fb22104066600fdddeaf94b004e63c8.tar.bz2
re PR c++/30759 (initializer-list accepted for object of non-POD type)
gcc/ 2007-06-07 Simon Martin <simartin@users.sourceforge.net> PR c++/30759 * c-common.h (flag_cpp0x): Replaced by... (cxx_dialect): ... this new variable specifying the C++ dialect that is used. * c-common.c (flag_cpp0x): Removed. (cxx_dialect): Defined. * c-cppbuiltin.c (c_cpp_builtins): flag_cpp0x rewritten in terms of cxx_dialect. * c-opts.c (c_common_post_options): Likewise. (set_std_cxx98): Set cxx_dialect to cxx98. (set_std_cxx0x): Set cxx_dialect to cxx0x. gcc/cp/ 2007-06-07 Simon Martin <simartin@users.sourceforge.net> PR c++/30759 * decl.c (check_initializer): Report an error when a brace enclosed initializer is used for a non-aggregate type in C++98. (redeclaration_error_message): Rewrote flag_cpp0x in terms of cxx_dialect. (grokdeclarator): Likewise. (move_fn_p): Likewise. * typeck.c (check_return_expr): Likewise. * call.c (reference_binding): Likewise. * error.c (cp_cpp_error): Likewise. * pt.c (check_default_tmpl_args): Likewise. (tsubst): Likewise. * lex.c (init_reswords): Likewise. * parser.c (p_parser_primary_expression): Likewise. (TOKEN_PRECEDENCE): Likewise. (cp_parser_init_declarator): Likewise. (cp_parser_ptr_operator): Likewise. (cp_parser_parameter_declaration): Likewise. (cp_parser_enclosed_template_argument_list): Likewise. (cp_parser_skip_to_end_of_template_parameter_list): Likewise. (cp_parser_next_token_ends_template_argument_p): Likewise. gcc/testsuite/ 2007-06-07 Simon Martin <simartin@users.sourceforge.net> PR c++/30759 * g++.dg/init/brace6.C: New test. From-SVN: r125539
Diffstat (limited to 'gcc/c-common.c')
-rw-r--r--gcc/c-common.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/gcc/c-common.c b/gcc/c-common.c
index b903218..f17bb7f 100644
--- a/gcc/c-common.c
+++ b/gcc/c-common.c
@@ -406,10 +406,9 @@ int flag_access_control = 1;
int flag_check_new;
-/* Nonzero if we want to allow the use of experimental features that
- are likely to become part of C++0x. */
+/* The C++ dialect being used. C++98 is the default. */
-int flag_cpp0x = 0;
+enum cxx_dialect cxx_dialect = cxx98;
/* Nonzero if we want the new ISO rules for pushing a new scope for `for'
initialization variables.