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

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

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