[clang] [Serialization] Avoid repeated hash lookups (NFC) (PR #110950)

2024-10-03 Thread Kazu Hirata via cfe-commits
https://github.com/kazutakahirata closed https://github.com/llvm/llvm-project/pull/110950 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang] [Serialization] Avoid repeated hash lookups (NFC) (PR #110950)

2024-10-03 Thread Nikita Popov via cfe-commits
https://github.com/nikic approved this pull request. LGTM https://github.com/llvm/llvm-project/pull/110950 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang] [Serialization] Avoid repeated hash lookups (NFC) (PR #110950)

2024-10-02 Thread via cfe-commits
llvmbot wrote: @llvm/pr-subscribers-clang-modules Author: Kazu Hirata (kazutakahirata) Changes --- Full diff: https://github.com/llvm/llvm-project/pull/110950.diff 1 Files Affected: - (modified) clang/lib/Serialization/GlobalModuleIndex.cpp (+7-8) ``diff diff --git a/clang/

[clang] [Serialization] Avoid repeated hash lookups (NFC) (PR #110950)

2024-10-02 Thread Kazu Hirata via cfe-commits
https://github.com/kazutakahirata created https://github.com/llvm/llvm-project/pull/110950 None >From 9be1bde51a7b095b285bdfb81123749b6364d524 Mon Sep 17 00:00:00 2001 From: Kazu Hirata Date: Wed, 2 Oct 2024 07:02:53 -0700 Subject: [PATCH] [Serialization] Avoid repeated hash lookups (NFC) ---