[llvm] Redundant Assert In AsmWriter (PR #129288)
via llvm-commits
llvm-commits at lists.llvm.org
Fri Feb 28 11:22:23 PST 2025
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-llvm-ir
Author: JP Hafer (jph-13)
<details>
<summary>Changes</summary>
The assert in GetConstant checks if Bound is constant. However, GetConstant is only called when IsConstant==true.
---
Full diff: https://github.com/llvm/llvm-project/pull/129288.diff
1 Files Affected:
- (modified) llvm/lib/IR/AsmWriter.cpp (-1)
``````````diff
diff --git a/llvm/lib/IR/AsmWriter.cpp b/llvm/lib/IR/AsmWriter.cpp
index a52c4d88ac836..306186d200e26 100644
--- a/llvm/lib/IR/AsmWriter.cpp
+++ b/llvm/lib/IR/AsmWriter.cpp
@@ -2117,7 +2117,6 @@ static void writeDIGenericSubrange(raw_ostream &Out, const DIGenericSubrange *N,
};
auto GetConstant = [&](Metadata *Bound) -> int64_t {
- assert(IsConstant(Bound) && "Expected constant");
auto *BE = dyn_cast_or_null<DIExpression>(Bound);
return static_cast<int64_t>(BE->getElement(1));
};
``````````
</details>
https://github.com/llvm/llvm-project/pull/129288
More information about the llvm-commits
mailing list