This is the mail archive of the
gcc-help@gcc.gnu.org
mailing list for the GCC project.
Re: extended asm problem ->pointer m1
- From: Eljay Love-Jensen <eljay at adobe dot com>
- To: Ankit Jain <ankitjain1580 at yahoo dot com>, gcc <gcc-help at gcc dot gnu dot org>
- Date: Mon, 09 Aug 2004 08:45:36 -0500
- Subject: Re: extended asm problem ->pointer m1
- References: <20040809131759.12545.qmail@web52910.mail.yahoo.com>
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