[PATCH] D35221: [scudo] PRNG makeover

Aleksey Shlyapnikov via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Tue Jul 11 14:41:52 PDT 2017


alekseyshl accepted this revision.
alekseyshl added inline comments.
This revision is now accepted and ready to land.


================
Comment at: lib/scudo/scudo_utils.h:85
+    CachedBytes = next();
+    CachedBytesAvailable = sizeof(u64);
+  }
----------------
sizeof(u64) -> sizeof(CachedBytes)


https://reviews.llvm.org/D35221





More information about the llvm-commits mailing list