[PATCH] D96398: [LTO] Perform DSOLocal propagation in combined index

Wei Wang via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Fri Feb 12 22:56:21 PST 2021


weiwang marked an inline comment as done.
weiwang added inline comments.


================
Comment at: llvm/include/llvm/Bitstream/BitstreamReader.h:196
 
-    static const unsigned Mask = sizeof(word_t) > 4 ? 0x3f : 0x1f;
+    static const unsigned Mask = sizeof(word_t) > 4 ? 0x7f : 0x1f;
 
----------------
tejohnson wrote:
> Why this change?
Sorry, this is unintended. I was sweeping through places with "0x3f", and didn't look close enough for this one. Reverted back. 


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D96398/new/

https://reviews.llvm.org/D96398



More information about the llvm-commits mailing list