source-interleave-x86_64.c 89 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 int a = 1; int foo() { return a; } int main() { int *b = &a; return *b + foo(); }