diff options
| author | dberlin <dberlin@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-01-16 17:57:34 +0000 |
|---|---|---|
| committer | dberlin <dberlin@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-01-16 17:57:34 +0000 |
| commit | 684b9d798479712b7ffc8094cd1867a16b984dbc (patch) | |
| tree | 08e781385bd8b32d3c2729426f48f9357fb1c5f2 /gcc/cp/typeck2.c | |
| parent | 02fe78e0195da69030c7f9c1c35a8a1914d85109 (diff) | |
| download | ppe42-gcc-684b9d798479712b7ffc8094cd1867a16b984dbc.tar.gz ppe42-gcc-684b9d798479712b7ffc8094cd1867a16b984dbc.zip | |
2001-01-16 Daniel Berlin <dberlin@redhat.com>
* cvt.c (ocp_convert): Handle vector type conversion
* typeck2.c (digest_init): Handle vector type initializations
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@39071 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cp/typeck2.c')
| -rw-r--r-- | gcc/cp/typeck2.c | 2 |
1 files changed, 1 insertions, 1 deletions
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) |

