]> git.ipfire.org Git - thirdparty/gcc.git/commit
re PR c++/18905 (Strange error: subscripted value is neither array nor pointer)
authorNathan Sidwell <nathan@codesourcery.com>
Thu, 16 Dec 2004 11:04:09 +0000 (11:04 +0000)
committerNathan Sidwell <nathan@gcc.gnu.org>
Thu, 16 Dec 2004 11:04:09 +0000 (11:04 +0000)
commit8a784e4a1772379577b0fe91de4b387390573435
treea82d5b1b25a2b0a52f0c9e6f96bfb4fbbb2d9e1c
parent0c0cce420e1ced4cfd4e6daddb91e3f6b548bf29
re PR c++/18905 (Strange error: subscripted value is neither array nor pointer)

cp:
PR c++/18905
* cp-tree.h (integral_constant_value): Declare.
* call.c (null_ptr_cst_p): Use integral_constant_value, not
decl_constant_value.
(convert_like_real): Likewise.
* class.c (check_bitfield_decl): Likewise.
* cvt.c (ocp_convert): Likewise.
(convert): Remove unnecessary decl_constant_value call.
* decl.c (compute_array_index_type): Use integral_constant_value,
not decl_constant_value.
(build_enumerator): Likewise.
* decl2.c (grokfield): Likewise.
* init.c (decl_constant_value): Simplify.
(integral_constant_value): New.
* pt.c (fold_decl_constant_value): Use integral_constant_value,
remove subsequent check.
(tsubst): Use integral_constant_value, not decl_constant_value.
(tsubst_copy, unify): Likewise.
* typeck.c (decay_conversion): Likewise.
(build_compound_expr): Remove unnecessary decl_constant_value
calls.
(build_static_cast_1, build_reinterpret_cast_1):
(convert_for_assignment): Remove comment about not calling
decl_constant_value.
testsuite:
PR c++/18905
* g++.dg/template/init4.C: New.
* g++.dg/opt/static3.C: Enable optimizer.

From-SVN: r92257
13 files changed:
gcc/cp/ChangeLog
gcc/cp/call.c
gcc/cp/class.c
gcc/cp/cp-tree.h
gcc/cp/cvt.c
gcc/cp/decl.c
gcc/cp/decl2.c
gcc/cp/init.c
gcc/cp/pt.c
gcc/cp/typeck.c
gcc/testsuite/ChangeLog
gcc/testsuite/g++.dg/opt/static3.C
gcc/testsuite/g++.dg/template/init4.C [new file with mode: 0644]