Re: -fleading-underscore is not working as expected.
On Wed, Apr 2, 2014 at 2:15 AM, Umesh Kalappa wrote: > > Was enabled the switch "-fleading-underscore" to emit the global > symbol name with prefix _ . > ld HL, (a) > > ld DE, (b) > > add DE, HL > > ld (c), DE > > cal _tes > >
-fleading-underscore is not working as expected.
Dear All , Was enabled the switch "-fleading-underscore" to emit the global symbol name with prefix _ . The respective C source file int a=10; int b=10,c; int test() { c =a+b ; tes(); return c ; } and respective asm file .global _a .section.dat