[PATCH] D92852: [NFC] Reduce include files dependency and AA header cleanup (part 2).
    Simon Pilgrim via Phabricator via llvm-commits 
    llvm-commits at lists.llvm.org
       
    Tue Dec  8 10:26:17 PST 2020
    
    
  
RKSimon added inline comments.
================
Comment at: llvm/include/llvm/Analysis/AliasAnalysis.h:800
     case Instruction::Invoke:
-      return getModRefInfo((const InvokeInst *)I, Loc, AAQIP);
+      return getModRefInfo((const CallBase *)I, Loc, AAQIP);
     case Instruction::CatchPad:
----------------
Is this necessary? It doesn't seem to match the pattern used for all the other Instruction types.
Repository:
  rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D92852/new/
https://reviews.llvm.org/D92852
    
    
More information about the llvm-commits
mailing list