blob: 8885bbf30b5e6d2370b901111c0ccccb3d73d321 [file] [log] [blame]
Elliott Hughes03333822015-02-18 22:19:45 -08001// gcc -m32 -g -O2 -o implicit_value implicit_value.c
2
3static __attribute__((noinline, noclone)) int foo ()
4{
5 unsigned long long a[] = { 2, 21 };
6 return a[0] * a[1];
7}
8
9int main (void)
10{
11 return foo () - 42;
12}