forked from OSchip/llvm-project
Debug Info: Add a virtual destructor to DwarfExpression.
Thanks Chandler for noticing! llvm-svn: 225724
This commit is contained in:
parent
2482fe0b52
commit
0fec811d7b
|
@ -28,6 +28,7 @@ protected:
|
|||
TargetMachine &TM;
|
||||
public:
|
||||
DwarfExpression(TargetMachine &TM) : TM(TM) {}
|
||||
virtual ~DwarfExpression() {};
|
||||
|
||||
virtual void EmitOp(uint8_t Op, const char* Comment = nullptr) = 0;
|
||||
virtual void EmitSigned(int Value) = 0;
|
||||
|
|
Loading…
Reference in New Issue