This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug tree-optimization/26833] [4.2 Regression] ICE Segmentation fault
- From: "law at redhat dot com" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 24 Mar 2006 06:43:56 -0000
- Subject: [Bug tree-optimization/26833] [4.2 Regression] ICE Segmentation fault
- References: <bug-26833-11706@http.gcc.gnu.org/bugzilla/>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
------- Comment #6 from law at redhat dot com 2006-03-24 06:43 -------
Subject: Re: [4.2 Regression] ICE
Segmentation fault
On Thu, 2006-03-23 at 22:19 +0000, pinskia at gcc dot gnu dot org wrote:
> void yasm_lc3b__parse_insn( int num_info, int *num_operands
> , int *operands, int op)
> {
> int found = 0;
> int i;
> for (; num_info>0 && !found; num_info--)
> {
> int mismatch = 0;
> for(i = 0;op && (i<*num_operands)&& !mismatch; i++)
> {
> if (!(int)(operands[i] & 0x1))
> mismatch = 1;
> if (mismatch)
> break;
> }
> if (!mismatch)
> found = 1;
> }
> }
DIfferent from the previous testcase, but the same root failure as
26806.
Jeff
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=26833