aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/execute/20010605-1.c
blob: c777af5bdc4ef17c563351bee21a44fb3bc38f77 (plain)
1
2
3
4
5
6
7
8
9
10
11
int main ()
{
  int v = 42;

  inline int fff (int x)
    {
      return x*10;
    }

  return (fff (v) != 420);
}