Home | History | Annotate | Download | only in tests
      1 // gcc -m32 -g -O2 -o implicit_value implicit_value.c
      2 
      3 static __attribute__((noinline, noclone)) int foo ()
      4 {
      5   unsigned long long a[] = { 2, 21 };
      6   return a[0] * a[1];
      7 }
      8 
      9 int main (void)
     10 {
     11   return foo () - 42;
     12 }
     13