Commit fad513aa by Segher Boessenkool

Add file I missed. Whoops.

From-SVN: r219982
parent c8b90a13
/* PR rtl-optimization/64682 */
int a, b = 1;
__attribute__((noinline, noclone)) void
foo (int x)
{
if (x != 5)
__builtin_abort ();
}
int
main ()
{
int i;
for (i = 0; i < 56; i++)
for (; a; a--)
;
int *c = &b;
if (*c)
*c = 1 % (unsigned int) *c | 5;
foo (b);
return 0;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment