Hi ,
How can we write a C code that will create assembly instrcutions invoving MAC instructions.does the compiler support to generate MAC instructions?
The following code doesn't seem to use MAC in the disassembly view:
float checkarr[]={0.3245023,0.00423456,0.500034,0.02542};
float adcarr[]={0.11123,0.56784,0.7832,0.001237};
float *ch,*ad;
int i = 0;
ch=(float*)checkarr;
ad=(float*)adcarr;
float sum;
for (i=0;i<4;i++)
{
sum+=*ch++**ad++;
}