mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-13 20:32:21 +00:00
Adds 'override' to overriding methods. NFC.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@218815 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
11e1c61b86
commit
7fae208c11
@ -185,7 +185,7 @@ public:
|
||||
|
||||
virtual ~CFLAliasAnalysis() {}
|
||||
|
||||
void getAnalysisUsage(AnalysisUsage &AU) const {
|
||||
void getAnalysisUsage(AnalysisUsage &AU) const override {
|
||||
AliasAnalysis::getAnalysisUsage(AU);
|
||||
}
|
||||
|
||||
|
@ -33,7 +33,7 @@ public:
|
||||
ObjMap[ModuleID] = copyBuffer(Obj);
|
||||
}
|
||||
|
||||
virtual std::unique_ptr<MemoryBuffer> getObject(const Module* M) {
|
||||
virtual std::unique_ptr<MemoryBuffer> getObject(const Module* M) override {
|
||||
const MemoryBuffer* BufferFound = getObjectInternal(M);
|
||||
ModulesLookedUp.insert(M->getModuleIdentifier());
|
||||
if (!BufferFound)
|
||||
|
Loading…
Reference in New Issue
Block a user