On Sep 3, 2014, at 7:12 PM, Gao, Liming <liming....@intel.com> wrote:

> Andrew:
>   The original code is “while (Counter > 0xffffffff) {“, we meet with the 
> same issue in UNIXGCC tool chain. So, we change the code to “while ((Counter 
> & 0xffffffff00000000ULL) != 0) {“.  Now, you meet with this issue again in 
> XCODE tool chain. The possible fix is to use BaseLib API. The code could be 
> changed to “while (RShiftU64 (Counter, 32) > 0) {“
>  

Liming,

This fixes the clang link issue.

Thanks,

Andrew Fish

> Thanks
> Liming

------------------------------------------------------------------------------
Slashdot TV.  
Video for Nerds.  Stuff that matters.
http://tv.slashdot.org/
_______________________________________________
edk2-devel mailing list
edk2-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/edk2-devel

Reply via email to