rjmccall added inline comments.

================
Comment at: clang/lib/Serialization/ASTWriter.cpp:3387
     Bits = (Bits << 1) | unsigned(II->isPoisoned());
-    Bits = (Bits << 1) | unsigned(II->hasRevertedBuiltin());
+    Bits <<= 1; // Previously used to indicate reverted builtin.
     Bits = (Bits << 1) | unsigned(II->hasRevertedTokenIDToIdentifier());
----------------
Clang bitcode isn't really a stable format, it's fine to just drop this bit.


Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D77491

_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to