[llvm] e93ae28 - Attributor: Fix typo
Matt Arsenault via llvm-commits
llvm-commits at lists.llvm.org
Tue Jul 25 04:25:26 PDT 2023
Author: Matt Arsenault
Date: 2023-07-25T07:25:11-04:00
New Revision: e93ae281db0a4812e9121ad0a3dd6de551f46f91
URL: https://github.com/llvm/llvm-project/commit/e93ae281db0a4812e9121ad0a3dd6de551f46f91
DIFF: https://github.com/llvm/llvm-project/commit/e93ae281db0a4812e9121ad0a3dd6de551f46f91.diff
LOG: Attributor: Fix typo
Added:
Modified:
llvm/lib/Transforms/IPO/Attributor.cpp
Removed:
################################################################################
diff --git a/llvm/lib/Transforms/IPO/Attributor.cpp b/llvm/lib/Transforms/IPO/Attributor.cpp
index 762706c5dab1d8..847d07a49dee33 100644
--- a/llvm/lib/Transforms/IPO/Attributor.cpp
+++ b/llvm/lib/Transforms/IPO/Attributor.cpp
@@ -1192,7 +1192,7 @@ const IRPosition
SubsumingPositionIterator::SubsumingPositionIterator(const IRPosition &IRP) {
IRPositions.emplace_back(IRP);
- // Helper to determine if operand bundles on a call site are benin or
+ // Helper to determine if operand bundles on a call site are benign or
// potentially problematic. We handle only llvm.assume for now.
auto CanIgnoreOperandBundles = [](const CallBase &CB) {
return (isa<IntrinsicInst>(CB) &&
More information about the llvm-commits
mailing list