[llvm] Add DISubrangeType (PR #126772)
via llvm-commits
llvm-commits at lists.llvm.org
Wed Feb 12 13:30:48 PST 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 2cf6663d3c86b065edeb693815e6a4b325045cc2 bf4cb17361c1de5a00f9fc5c8984677c5eef0c90 --extensions cpp,h -- llvm/include/llvm-c/DebugInfo.h llvm/include/llvm/Bitcode/LLVMBitCodes.h llvm/include/llvm/IR/DIBuilder.h llvm/include/llvm/IR/DebugInfoMetadata.h llvm/lib/AsmParser/LLParser.cpp llvm/lib/Bitcode/Reader/MetadataLoader.cpp llvm/lib/Bitcode/Writer/BitcodeWriter.cpp llvm/lib/CodeGen/AsmPrinter/DebugHandlerBase.cpp llvm/lib/CodeGen/AsmPrinter/DwarfUnit.cpp llvm/lib/CodeGen/AsmPrinter/DwarfUnit.h llvm/lib/IR/AsmWriter.cpp llvm/lib/IR/DIBuilder.cpp llvm/lib/IR/DebugInfoMetadata.cpp llvm/lib/IR/LLVMContextImpl.h llvm/lib/IR/Verifier.cpp llvm/unittests/IR/MetadataTest.cpp
``````````
</details>
<details>
<summary>
View the diff from clang-format here.
</summary>
``````````diff
diff --git a/llvm/lib/IR/LLVMContextImpl.h b/llvm/lib/IR/LLVMContextImpl.h
index 62f1029f6f..b9ab147048 100644
--- a/llvm/lib/IR/LLVMContextImpl.h
+++ b/llvm/lib/IR/LLVMContextImpl.h
@@ -650,8 +650,7 @@ template <> struct MDNodeKeyImpl<DISubrangeType> {
return Name == RHS->getRawName() && File == RHS->getRawFile() &&
Line == RHS->getLine() && Scope == RHS->getRawScope() &&
SizeInBits == RHS->getSizeInBits() &&
- AlignInBits == RHS->getAlignInBits() &&
- Flags == RHS->getFlags() &&
+ AlignInBits == RHS->getAlignInBits() && Flags == RHS->getFlags() &&
BaseType == RHS->getRawBaseType() &&
BoundsEqual(LowerBound, RHS->getRawLowerBound()) &&
BoundsEqual(UpperBound, RHS->getRawUpperBound()) &&
@@ -661,13 +660,13 @@ template <> struct MDNodeKeyImpl<DISubrangeType> {
unsigned getHashValue() const {
unsigned val = 0;
- auto HashBound = [&] (Metadata *Node) -> void {
+ auto HashBound = [&](Metadata *Node) -> void {
ConstantAsMetadata *MD = dyn_cast_or_null<ConstantAsMetadata>(Node);
if (MD) {
ConstantInt *CV = cast<ConstantInt>(MD->getValue());
- val = hash_combine(val, CV->getSExtValue());
+ val = hash_combine(val, CV->getSExtValue());
} else {
- val = hash_combine(val, Node);
+ val = hash_combine(val, Node);
}
};
``````````
</details>
https://github.com/llvm/llvm-project/pull/126772
More information about the llvm-commits
mailing list