[PATCH] D66433: LibFuzzer support for 32bit MSVC
    Reid Kleckner via Phabricator via llvm-commits 
    llvm-commits at lists.llvm.org
       
    Mon Aug 19 14:12:45 PDT 2019
    
    
  
rnk added inline comments.
================
Comment at: lib/fuzzer/FuzzerBuiltinsMsvc.h:63
+  return __popcnt(X);
+#else
+  return __popcnt64(X);
----------------
I think this needs to pop count both 32-bit pieces of the 64-bit input.
Repository:
  rCRT Compiler Runtime
CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D66433/new/
https://reviews.llvm.org/D66433
    
    
More information about the llvm-commits
mailing list