mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-05 10:49:34 +02:00
GP-3840 Adjustment to FlowBlock::restrictedByConditional
This commit is contained in:
parent
c072972153
commit
0a23876e01
21 changed files with 147 additions and 34 deletions
|
@ -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;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue