This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug bootstrap/37152] New: tree-vect-transform.c: use of "=" where "==" may have been intended
- From: "dcb314 at hotmail dot com" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 18 Aug 2008 18:30:38 -0000
- Subject: [Bug bootstrap/37152] New: tree-vect-transform.c: use of "=" where "==" may have been intended
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
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 ?
--
Summary: tree-vect-transform.c: use of "=" where "==" may have
been intended
Product: gcc
Version: 4.4.0
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: bootstrap
AssignedTo: unassigned at gcc dot gnu dot org
ReportedBy: dcb314 at hotmail dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=37152