1 #include <stdio.h> 2 3 /* To prevent inlining and optimizing away */ foo(volatile int * f)4 int foo(volatile int* f) { 5 return *f; 6 } 7