Note that this actually has no functional change -- we never call these
methods using the derived type. But it is still cleaner and fixes a GCC
warning.
Spotted by Dave in code review and the warning spotted by Joerg on IRC.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@245341
91177308-0d34-0410-b5e6-
96231b3b80d8
AliasResult alias(const MemoryLocation &LocA,
const MemoryLocation &LocB) override;
+ using AliasAnalysis::getModRefInfo;
ModRefInfo getModRefInfo(ImmutableCallSite CS,
const MemoryLocation &Loc) override;
};
//
AliasResult alias(const MemoryLocation &LocA,
const MemoryLocation &LocB) override;
+
+ using AliasAnalysis::getModRefInfo;
ModRefInfo getModRefInfo(ImmutableCallSite CS,
const MemoryLocation &Loc) override;