mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-15 23:31:37 +00:00
Fix -Wdelete-non-virtual-dtor warnings by making SampleProfile methods non-virtual
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@194568 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
563b29f8db
commit
4223b96010
@ -81,10 +81,10 @@ class SampleProfile {
|
|||||||
public:
|
public:
|
||||||
SampleProfile(StringRef F) : Profiles(0), Filename(F) {}
|
SampleProfile(StringRef F) : Profiles(0), Filename(F) {}
|
||||||
|
|
||||||
virtual void dump();
|
void dump();
|
||||||
virtual void loadText();
|
void loadText();
|
||||||
virtual void loadNative() { llvm_unreachable("not implemented"); }
|
void loadNative() { llvm_unreachable("not implemented"); }
|
||||||
virtual bool emitAnnotations(Function &F);
|
bool emitAnnotations(Function &F);
|
||||||
void printFunctionProfile(raw_ostream &OS, StringRef FName);
|
void printFunctionProfile(raw_ostream &OS, StringRef FName);
|
||||||
void dumpFunctionProfile(StringRef FName);
|
void dumpFunctionProfile(StringRef FName);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user