95ca22f405
* function.c (gen_mem_addressof): If the address REG is REG_USERVAR_P make the new REG be so also. * loop.c (scan_loop): Apply DeMorgan's laws and add documentation in an attempt to clarify slightly. From-SVN: r22667
22 lines
167 B
C
22 lines
167 B
C
void f(int i)
|
|
{
|
|
if (i != 1000)
|
|
abort ();
|
|
}
|
|
|
|
|
|
int main()
|
|
{
|
|
int n=1000;
|
|
int i;
|
|
|
|
f(n);
|
|
for(i=0; i<1; ++i) {
|
|
f(n);
|
|
n=666;
|
|
&n;
|
|
}
|
|
|
|
exit (0);
|
|
}
|