diff options
author | Matt Arsenault <Matthew.Arsenault@amd.com> | 2023-07-24 09:34:52 -0400 |
---|---|---|
committer | Matt Arsenault <Matthew.Arsenault@amd.com> | 2023-07-25 07:25:11 -0400 |
commit | e93ae281db0a4812e9121ad0a3dd6de551f46f91 (patch) | |
tree | 38f0c7dc2fd02a5b4386b45a3f052acc9eec1483 /llvm | |
parent | 59a5c582dc35aa4e50a66bdf18fe7e3a35802fd4 (diff) | |
download | llvm-e93ae281db0a4812e9121ad0a3dd6de551f46f91.zip llvm-e93ae281db0a4812e9121ad0a3dd6de551f46f91.tar.gz llvm-e93ae281db0a4812e9121ad0a3dd6de551f46f91.tar.bz2 |
Attributor: Fix typo
Diffstat (limited to 'llvm')
-rw-r--r-- | llvm/lib/Transforms/IPO/Attributor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/IPO/Attributor.cpp b/llvm/lib/Transforms/IPO/Attributor.cpp index 762706c..847d07a 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) && |