From 0c9cfa6f4fcdb6c403de359fe354406acda454fe Mon Sep 17 00:00:00 2001 From: Richard Stallman Date: Thu, 18 Mar 1993 21:31:09 +0000 Subject: [PATCH] (digest_init): Handle COMPLEX_TYPE like other scalars. From-SVN: r3779 --- gcc/c-typeck.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/c-typeck.c b/gcc/c-typeck.c index d5c251be668..7070db9893a 100644 --- a/gcc/c-typeck.c +++ b/gcc/c-typeck.c @@ -4903,7 +4903,7 @@ digest_init (type, init, tail, require_constant, constructor_constant, ofwhat) /* Handle scalar types, including conversions. */ if (code == INTEGER_TYPE || code == REAL_TYPE || code == POINTER_TYPE - || code == ENUMERAL_TYPE) + || code == ENUMERAL_TYPE || code == COMPEX_TYPE) { if (raw_constructor) { -- 2.30.2