From 5e14a48463b4c3eb3f36eeef30dee7312f9127da Mon Sep 17 00:00:00 2001 From: Jan Svoboda Date: Mon, 6 Feb 2023 11:39:40 -0800 Subject: [PATCH] [clang] NFC: Remove GCC 5.1 workaround in FileEntry We no longer support GCC 5.1 (D122976), so let's remove the workaround in FileEntry. Reviewed By: benlangmuir Differential Revision: https://reviews.llvm.org/D143427 --- clang/include/clang/Basic/FileEntry.h | 13 +++++-------- clang/lib/Basic/FileManager.cpp | 3 +-- 2 files changed, 6 insertions(+), 10 deletions(-) diff --git a/clang/include/clang/Basic/FileEntry.h b/clang/include/clang/Basic/FileEntry.h index 93e84cf..d86191a 100644 --- a/clang/include/clang/Basic/FileEntry.h +++ b/clang/include/clang/Basic/FileEntry.h @@ -118,10 +118,7 @@ public: /// VFSs that use external names. In that case, the \c FileEntryRef /// returned by the \c FileManager will have the external name, and not the /// name that was used to lookup the file. - /// - /// The second type is really a `const MapEntry *`, but that confuses - /// gcc5.3. Once that's no longer supported, change this back. - llvm::PointerUnion V; + llvm::PointerUnion V; /// Directory the file was found in. Set if and only if V is a FileEntry. OptionalDirectoryEntryRef Dir; @@ -165,10 +162,10 @@ public: /// Retrieve the base MapEntry after redirects. const MapEntry &getBaseMapEntry() const { - const MapEntry *ME = this->ME; - while (const void *Next = ME->second->V.dyn_cast()) - ME = static_cast(Next); - return *ME; + const MapEntry *Base = ME; + while (const auto *Next = Base->second->V.dyn_cast()) + Base = Next; + return *Base; } private: diff --git a/clang/lib/Basic/FileManager.cpp b/clang/lib/Basic/FileManager.cpp index e8d0f20..7d6fc47 100644 --- a/clang/lib/Basic/FileManager.cpp +++ b/clang/lib/Basic/FileManager.cpp @@ -403,8 +403,7 @@ FileEntryRef FileManager::getVirtualFileRef(StringRef Filename, off_t Size, FileEntryRef::MapValue Value = *NamedFileEnt.second; if (LLVM_LIKELY(Value.V.is())) return FileEntryRef(NamedFileEnt); - return FileEntryRef(*reinterpret_cast( - Value.V.get())); + return FileEntryRef(*Value.V.get()); } // We've not seen this before, or the file is cached as non-existent. -- 2.7.4