• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 static volatile int do_mul;
2 static volatile int x, v;
3 
foo()4 int foo () {
5   if (do_mul) x *= v; else x /= v;
6   return x;
7 }
8 
main()9 int main() {
10   return foo() + foo();
11 }
12