8sa1-gcc/gcc/testsuite/gcc.c-torture/execute/980929-1.c
Mark Mitchell 95ca22f405 function.c (gen_mem_addressof): If the address REG is REG_USERVAR_P make the new REG be so also.
* 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
1998-09-30 10:10:02 +00:00

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);
}