aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/execute/inst-check.c
blob: e452d3329cb92f7c87521ec63b0e80cadd96fb79 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* { dg-additional-options "-std=gnu89" } */

#include <stdarg.h>

f(m)
{
  int i,s=0;
  for(i=0;i<m;i++)
    s+=i;
  return s;
}

main()
{
  exit (0);
}