This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug optimization/14682] [tree-ssa] error: Invalid operand to binary operator
- From: "steven at gcc dot gnu dot org" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 22 Mar 2004 21:34:49 -0000
- Subject: [Bug optimization/14682] [tree-ssa] error: Invalid operand to binary operator
- References: <20040322193838.14682.aj@gcc.gnu.org>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
------- Additional Comments From steven at gcc dot gnu dot org 2004-03-22 21:34 -------
In tree-ssa-ccp.c:
/* If we couldn't fold the RHS, hand over to the generic fold routines. */
if (result == NULL_TREE)
result = fold (rhs);
After fold(rhs), we have:
(gdb) p print_generic_stmt (stderr,result,0)
(long long int)iov_len_6 < 0;
So Andrew is right.
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=14682