[PATCH] D39874: LTO: don't fatal when value for cache key already exists

Peter Collingbourne via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Thu Nov 9 18:04:39 PST 2017


pcc accepted this revision.
pcc added a comment.
This revision is now accepted and ready to land.

LGTM



================
Comment at: llvm/lib/Support/Windows/Path.inc:737-738
       ::CreateFileMappingW(FileHandle, 0, flprotect,
-                           (Offset + Size) >> 32,
-                           (Offset + Size) & 0xffffffff,
+                           Size >> 32,
+                           Size & 0xffffffff,
                            0);
----------------
This is part of an unrelated change, right?


https://reviews.llvm.org/D39874





More information about the llvm-commits mailing list