------- Comment #1 from dorit at gcc dot gnu dot org 2008-08-18 20:11 -------
(In reply to comment #0)
> I just tried to compile GNU CC version 4.4 snapshot 20080815 with the
> Intel C compiler and it said
> gcc/tree-vect-transform.c(2488): warning #187: use of "=" where "==" may have
> been intended
> The source code is
> gcc_assert (ncopies = 1);
> Perhaps
> gcc_assert (ncopies == 1);
> was intended ?
no... thanks for the catch, I'll commit a fix
--
dorit at gcc dot gnu dot org changed:
What |Removed |Added
----------------------------------------------------------------------------
Summary|tree-vect-transform.c: use |tree-vect-transform.c: use
|of "=" where "==" may have |of "=" where "==" may have
|been intended |been intended
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=37152