[PATCH] D127654: [clang] NFCI: Use DirectoryEntryRef in Module::Directory
Jan Svoboda via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Tue May 30 13:54:27 PDT 2023
This revision was landed with ongoing or failed builds.
This revision was automatically updated to reflect the committed changes.
jansvoboda11 marked 2 inline comments as done.
Closed by commit rG32d6f3cfd90b: [clang] NFCI: Use DirectoryEntryRef in Module::Directory (authored by jansvoboda11).
Changed prior to commit:
https://reviews.llvm.org/D127654?vs=436408&id=526779#toc
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D127654/new/
https://reviews.llvm.org/D127654
Files:
clang/include/clang/Basic/Module.h
clang/lib/Lex/ModuleMap.cpp
Index: clang/lib/Lex/ModuleMap.cpp
===================================================================
--- clang/lib/Lex/ModuleMap.cpp
+++ clang/lib/Lex/ModuleMap.cpp
@@ -181,7 +181,7 @@
Module *M, const Module::UnresolvedHeaderDirective &Header,
SmallVectorImpl<char> &RelativePathName, bool &NeedsFramework) {
// Search for the header file within the module's home directory.
- auto *Directory = M->Directory;
+ auto Directory = M->Directory;
SmallString<128> FullPathName(Directory->getName());
auto GetFile = [&](StringRef Filename) -> OptionalFileEntryRef {
Index: clang/include/clang/Basic/Module.h
===================================================================
--- clang/include/clang/Basic/Module.h
+++ clang/include/clang/Basic/Module.h
@@ -149,7 +149,7 @@
/// The build directory of this module. This is the directory in
/// which the module is notionally built, and relative to which its headers
/// are found.
- const DirectoryEntry *Directory = nullptr;
+ OptionalDirectoryEntryRefDegradesToDirectoryEntryPtr Directory;
/// The presumed file name for the module map defining this module.
/// Only non-empty when building from preprocessed source.
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D127654.526779.patch
Type: text/x-patch
Size: 1207 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20230530/a75d7972/attachment.bin>
More information about the cfe-commits
mailing list