* gcc.c-torture/compile/20000120-2.c: Use -fgnu89-inline.
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / pr26833.c
blob76c201c6ea08c196473dd96a7a88f78f7300aa63
1 void yasm_lc3b__parse_insn( int num_info, int *num_operands
2 , int *operands, int op)
4 int found = 0;
5 int i;
6 for (; num_info>0 && !found; num_info--)
8 int mismatch = 0;
9 for(i = 0;op && (i<*num_operands)&& !mismatch; i++)
11 if (!(int)(operands[i] & 0x1))
12 mismatch = 1;
13 if (mismatch)
14 break;
16 if (!mismatch)
17 found = 1;