diff options
author | Johannes Doerfert <johannes@jdoerfert.de> | 2020-01-12 00:00:33 -0600 |
---|---|---|
committer | Johannes Doerfert <johannes@jdoerfert.de> | 2020-01-23 18:13:52 -0600 |
commit | d07b5a5525e636f33c008e90b2dca52a0a434ed4 (patch) | |
tree | 2f377b513f592ecbb4c3a61bc09464fad8e8198c | |
parent | 2baf000ecc06209c70e46e19cf947a8f77cf0cad (diff) | |
download | llvm-d07b5a5525e636f33c008e90b2dca52a0a434ed4.zip llvm-d07b5a5525e636f33c008e90b2dca52a0a434ed4.tar.gz llvm-d07b5a5525e636f33c008e90b2dca52a0a434ed4.tar.bz2 |
[Attributor][NFC] Fix spelling
-rw-r--r-- | llvm/lib/Transforms/IPO/Attributor.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Transforms/IPO/Attributor.cpp b/llvm/lib/Transforms/IPO/Attributor.cpp index 19dc998..b39f38d 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; |