tree-if-conv.c: fix ICE seen with -fno-tree-forwprop (PR tree-optimization/84178)
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / 20090401-1.c
bloba0058feb2df1bdf7d863740d910b5eeeca52eddf
1 /* PR rtl-optimization/39588 */
2 /* Testcase by Olivier ROUSSEL <olivier.roussel@cril.univ-artois.fr> */
4 #define lit_from_int(in) ((in<0)?(((-in)<<1)|1):(in<<1))
6 void init_clause(int *literals, int size, int *lits)
8 int i;
9 for(i=0; i < size; i++)
10 lits[i] = lit_from_int(literals[i]);