Re: gcc and vfp instructions

2005-04-01 Thread aram bharathi
structions. for example for multiplying a and b they havent used fmuls.. is there any special command line option should b given to produce new.s with fmuls thanks - Original Message - From: "Richard Earnshaw" <[EMAIL PROTECTED]> To: "aram bharathi" <[EMA

gcc and vfp instructions

2005-03-22 Thread aram bharathi
hi, i like to know whether gcc can generate vfp instructions.. main() { float a=88.88,b=99.99,c=0; c=a+b; printf("%f",c); } i used the following option to compile the above program arm-elf-gcc -mfp=2 -S new.c but it produces the new.s file without any special kind of (vfp instructions) inst

gcc and vfp instructions

2005-03-22 Thread aram bharathi
hi, i like to know whether gcc can generate vfp instructions.. main() { float a=88.88,b=99.99,c=0; c=a+b; printf("%f",c); } i used the following option to compile the above program arm-elf-gcc -mfp=2 -S new.c but it produces the new.s file without any special kind of (vfp instructions) inst

gcc with arm -vfp instructions

2005-03-21 Thread aram bharathi
hi, i like to know whether gcc can generate vfp instructions.. main() { float a=88.88,b=99.99,c=0; c=a+b; printf("%f",c); } i used the following option to compile the above program arm-elf-gcc -mfp=2 -S new.c but it produces the new.s file without any special kind of (vfp instructions) inst

help regarding ld

2005-03-18 Thread aram bharathi
hi, i am using the arm-elf-gcc compiler to generate the assembly code arm-elf-gcc -mthumb -S new.c after this i use the arm-elf-as for genrating machine code arm-elf-as new.s it produces one a.out file.. arm-elf-ld a.out produces error like arm-elf-ld: warning: cannot find entry sym

interworking problem

2005-02-21 Thread aram bharathi
checks for this corresponding change. thanks in advance - Original Message - From: "Ian Lance Taylor" To: "aram bharathi" <[EMAIL PROTECTED]> Subject: Re: adding new instruction Date: 12 Feb 2005 21:06:07 -0500 > > "aram bharathi" <[EMAIL

adding new instruction

2005-02-12 Thread aram bharathi
hi, i like to add a new instruction based on thumb ISA. i have added the instruction in both as and gcc. both of them are working correctly. but when i call ld it shows an error like /home/.../arm-elf-ld : /home/../arm-elf/lib/libc.a(printf.o)(printf): warning : interworking not enabled first