[PATCH] D144172: [Support] [Windows] Don't check file access time in equivalent(file_status, file_status)
Martin Storsjö via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Fri Feb 17 00:57:35 PST 2023
This revision was landed with ongoing or failed builds.
This revision was automatically updated to reflect the committed changes.
Closed by commit rGa1e80c69223a: [Support] [Windows] Don't check file access time in equivalent(file_status… (authored by rvogg, committed by mstorsjo).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D144172/new/
https://reviews.llvm.org/D144172
Files:
llvm/lib/Support/Windows/Path.inc
Index: llvm/lib/Support/Windows/Path.inc
===================================================================
--- llvm/lib/Support/Windows/Path.inc
+++ llvm/lib/Support/Windows/Path.inc
@@ -650,8 +650,6 @@
return A.FileIndexHigh == B.FileIndexHigh &&
A.FileIndexLow == B.FileIndexLow && A.FileSizeHigh == B.FileSizeHigh &&
A.FileSizeLow == B.FileSizeLow &&
- A.LastAccessedTimeHigh == B.LastAccessedTimeHigh &&
- A.LastAccessedTimeLow == B.LastAccessedTimeLow &&
A.LastWriteTimeHigh == B.LastWriteTimeHigh &&
A.LastWriteTimeLow == B.LastWriteTimeLow &&
A.VolumeSerialNumber == B.VolumeSerialNumber;
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D144172.498275.patch
Type: text/x-patch
Size: 667 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20230217/ed389e3d/attachment.bin>
More information about the llvm-commits
mailing list