[llvm] [OpenMP] Move KernelInfoState and AAKernelInfo to OpenMPOpt.h (PR #71878)
Johannes Doerfert via llvm-commits
llvm-commits at lists.llvm.org
Fri Nov 10 13:13:56 PST 2023
================
@@ -5486,12 +5300,12 @@ void OpenMPOpt::registerAAs(bool IsModulePass) {
return;
if (IsModulePass) {
- // Ensure we create the AAKernelInfo AAs first and without triggering an
+ // Ensure we create the AAKernelInfoImpl AAs first and without triggering an
// update. This will make sure we register all value simplification
// callbacks before any other AA has the chance to create an AAValueSimplify
// or similar.
auto CreateKernelInfoCB = [&](Use &, Function &Kernel) {
- A.getOrCreateAAFor<AAKernelInfo>(
+ A.getOrCreateAAFor<AAKernelInfoImpl>(
----------------
jdoerfert wrote:
Don't change it here.
https://github.com/llvm/llvm-project/pull/71878
More information about the llvm-commits
mailing list