This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
Re: Patch for PR21969 (large vector causes ICE)
- From: Zack Weinberg <zack at codesourcery dot com>
- To: sje at cup dot hp dot com
- Cc: gcc-patches at gcc dot gnu dot org
- Date: Thu, 23 Jun 2005 14:09:36 -0700
- Subject: Re: Patch for PR21969 (large vector causes ICE)
- References: <200506201653.JAA04283@hpsje.cup.hp.com>
> + if (nunits > 256)
> + {
> + error ("number of components of the vector greater than 256");
> + return NULL_TREE;
> + }
In addition to what everyone else has said, I just want to point out that this
should be sorry(), not error().
zw