This is the mail archive of the gcc-help@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: extended asm problem ->pointer m1


Hi Ankit,

Maybe it'd be easier just to use the arrays directly:

        asm (
                "movq %0 , %%mm0\n\t"
                "movq %%mm0 , %1\n\t"
                :"=m" (a[0])
                :"m" (b[0])
                );

HTH,
--Eljay


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]