[llvm] d07b5a5 - [Attributor][NFC] Fix spelling
Johannes Doerfert via llvm-commits
llvm-commits at lists.llvm.org
Thu Jan 23 16:14:59 PST 2020
Author: Johannes Doerfert
Date: 2020-01-23T18:13:52-06:00
New Revision: d07b5a5525e636f33c008e90b2dca52a0a434ed4
URL: https://github.com/llvm/llvm-project/commit/d07b5a5525e636f33c008e90b2dca52a0a434ed4
DIFF: https://github.com/llvm/llvm-project/commit/d07b5a5525e636f33c008e90b2dca52a0a434ed4.diff
LOG: [Attributor][NFC] Fix spelling
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 19dc99893167..b39f38d9ac80 100644
--- a/llvm/lib/Transforms/IPO/Attributor.cpp
+++ b/llvm/lib/Transforms/IPO/Attributor.cpp
@@ -4143,11 +4143,11 @@ struct AAValueSimplifyImpl : AAValueSimplify {
Optional<Value *> &AccumulatedSimplifiedValue) {
// FIXME: Add a typecast support.
- auto &ValueSimpifyAA = A.getAAFor<AAValueSimplify>(
+ auto &ValueSimplifyAA = A.getAAFor<AAValueSimplify>(
QueryingAA, IRPosition::value(QueryingValue));
Optional<Value *> QueryingValueSimplified =
- ValueSimpifyAA.getAssumedSimplifiedValue(A);
+ ValueSimplifyAA.getAssumedSimplifiedValue(A);
if (!QueryingValueSimplified.hasValue())
return true;
More information about the llvm-commits
mailing list