This is the mail archive of the
gcc-help@gcc.gnu.org
mailing list for the GCC project.
Re: paddb vs paddw
- 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: Thu, 23 Dec 2004 06:46:30 -0600
- Subject: Re: paddb vs paddw
- References: <20041223110031.95225.qmail@web52905.mail.yahoo.com>
Hi Ankit,
>Both the programs give the same output. WHY IS IT SO? i am using paddb
and paddw. it dosent make any diff?
Try these number instead, and see if it makes a difference:
uint8_t a[8]={0x80,0x81,0x82,0x83,0x84,0x85,0x86,0x87};
uint8_t b[8]={0xF1,0xF2,0xF3,0xF4,0xF5,0xF6,0xF7,0xF8};
uint8_t i;
HTH,
--Eljay