GP-3840 Adjustment to FlowBlock::restrictedByConditional

This commit is contained in:
caheckman 2023-09-13 20:38:46 +00:00
parent c072972153
commit 0a23876e01
21 changed files with 147 additions and 34 deletions

View file

@ -49,9 +49,9 @@ class Funcdata;
/// of the Cover of an address tied Varnode and a PcodeOp in this set, affectsTest() can do
/// secondary testing of whether the Varnode is actually modified by the PcodeOp.
class StackAffectingOps : public PcodeOpSet {
Funcdata &data;
Funcdata &data; ///< The function containing these ops
public:
StackAffectingOps(Funcdata &fd) : data(fd) {}
StackAffectingOps(Funcdata &fd) : data(fd) {} ///< Constructor
virtual void populate(void);
virtual bool affectsTest(PcodeOp *op,Varnode *vn) const;
};