From bb37c4a562c7dda824144fff8acd352f7dae1305 Mon Sep 17 00:00:00 2001 From: Daniel Berlin Date: Tue, 16 Jan 2001 17:57:34 +0000 Subject: [PATCH] cvt.c (ocp_convert): Handle vector type conversion 2001-01-16 Daniel Berlin * cvt.c (ocp_convert): Handle vector type conversion * typeck2.c (digest_init): Handle vector type initializations From-SVN: r39071 --- gcc/cp/ChangeLog | 5 +++++ gcc/cp/cvt.c | 2 ++ gcc/cp/typeck2.c | 2 +- 3 files changed, 8 insertions(+), 1 deletion(-) diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index 4988985dcd4..e013065e390 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,8 @@ +2001-01-16 Daniel Berlin + + * cvt.c (ocp_convert): Handle vector type conversion + * typeck2.c (digest_init): Handle vector type initializations + 2001-01-16 Phil Edwards * g++spec.c: Don't add libraries needlessly if -fsyntax-only diff --git a/gcc/cp/cvt.c b/gcc/cp/cvt.c index 7936983c28a..ff7d4bc4cea 100644 --- a/gcc/cp/cvt.c +++ b/gcc/cp/cvt.c @@ -794,6 +794,8 @@ ocp_convert (type, expr, convtype, flags) if (code == POINTER_TYPE || code == REFERENCE_TYPE || TYPE_PTRMEMFUNC_P (type)) return fold (cp_convert_to_pointer (type, e, 0)); + if (code == VECTOR_TYPE) + return fold (convert_to_vector (type, e)); if (code == REAL_TYPE || code == COMPLEX_TYPE) { if (IS_AGGR_TYPE (TREE_TYPE (e))) diff --git a/gcc/cp/typeck2.c b/gcc/cp/typeck2.c index 5cccddcfe34..a7e71e59ded 100644 --- a/gcc/cp/typeck2.c +++ b/gcc/cp/typeck2.c @@ -545,7 +545,7 @@ digest_init (type, init, tail) if (code == INTEGER_TYPE || code == REAL_TYPE || code == POINTER_TYPE || code == ENUMERAL_TYPE || code == REFERENCE_TYPE - || code == BOOLEAN_TYPE || code == COMPLEX_TYPE + || code == BOOLEAN_TYPE || code == COMPLEX_TYPE || code == VECTOR_TYPE || TYPE_PTRMEMFUNC_P (type)) { if (raw_constructor) -- 2.30.2