[llvm] [clang][OpenMP] Fix bug #62099 - use hash value when inode ID cannot be determined (PR #131646)
via llvm-commits
llvm-commits at lists.llvm.org
Mon Mar 17 10:22:49 PDT 2025
github-actions[bot] wrote:
<!--LLVM CODE FORMAT COMMENT: {clang-format}-->
:warning: C/C++ code formatter, clang-format found issues in your code. :warning:
<details>
<summary>
You can test this locally with the following command:
</summary>
``````````bash
git-clang-format --diff e2c43ba981620cf71ce3ccf004db7c0db4caf8a7 30a7f0ce492ce2e4a634d017721c44f042bd0b2a --extensions cpp -- llvm/lib/Frontend/OpenMP/OMPIRBuilder.cpp
``````````
</details>
<details>
<summary>
View the diff from clang-format here.
</summary>
``````````diff
diff --git a/llvm/lib/Frontend/OpenMP/OMPIRBuilder.cpp b/llvm/lib/Frontend/OpenMP/OMPIRBuilder.cpp
index dacbc00ec7..c66a32f5a7 100644
--- a/llvm/lib/Frontend/OpenMP/OMPIRBuilder.cpp
+++ b/llvm/lib/Frontend/OpenMP/OMPIRBuilder.cpp
@@ -9583,8 +9583,7 @@ OpenMPIRBuilder::getTargetEntryUniqueInfo(FileIdentifierInfoCallbackTy CallBack,
// The inode ID could not be determined, so create a hash value
// the current file name and use that as an ID.
FileID = hash_value(FileIDInfo);
- }
- else {
+ } else {
FileID = ID.getFile();
}
``````````
</details>
https://github.com/llvm/llvm-project/pull/131646
More information about the llvm-commits
mailing list