So in a 32bit environment i compile a ".c" file.
A.c and get A.o
I save A.o .
Suppose A.c has a variable like
int a // i change this to long a;
After the change i compile and get another A.o.
Now when i do " cmp A.o A.o " , i can see that these files differ. Now my question can i find out what exactly changed by comparing ".o" files.
I am getting the assembly code out and doing a diff, but i cant make head and tails of it. Can someone suggest a smarter way.