patch-gnuradio
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Patch-gnuradio] Masking in volk_64u_popcnt.h


From: Moritz Fischer
Subject: Re: [Patch-gnuradio] Masking in volk_64u_popcnt.h
Date: Tue, 08 May 2012 00:47:15 +0200
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:12.0) Gecko/20120430 Thunderbird/12.0.1

On 05/06/2012 12:43 PM, Moritz Fischer wrote:

- uint32_t retVal = (uint32_t)(value && 0x00000000FFFFFFFF);
+ uint32_t retVal = (uint32_t)(value & 0x00000000FFFFFFFF);

Patch is attached,


Sorry for double posting ... but the previously attached patch missed a second occurrence of the && in the same file.

Patch attached.

Cheers,

Moritz

Attachment: 0001-Fixed-a-masking-issue-in-volk_64u_popcnt_a.h.patch
Description: Text Data


reply via email to

[Prev in Thread] Current Thread [Next in Thread]