Example 6. C Code to Show Code-Size Optimizations

extern int x, y, *ptr; extern int foo(); int main(int a, int b, int c) { ptr[50] = foo(); y = ptr[50] + x + y + a +b + c; }