/* I, Luca Saiu, author of this script, hereby release it into the public domain
   up to the extent permitted by law. */

int
main (void)
{
  long i;
  for (i = 2000000000; i != 0; i --)
    asm volatile ("" : : "r" (i));
}
