Skip to content

Commit

Permalink
Merge pull request #1593 from tttturtle-russ/master
Browse files Browse the repository at this point in the history
fix CallCHI doc
  • Loading branch information
yuleisui authored Nov 12, 2024
2 parents f11838c + a8d337e commit 64e449c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions svf/include/MSSA/MSSAMuChi.h
Original file line number Diff line number Diff line change
Expand Up @@ -515,15 +515,15 @@ class StoreCHI : public MSSACHI<Cond>

/*!
*
* StoreCHI is annotated at each store instruction, representing a memory object is modified here
* CallCHI is annotated at callsite, representing a memory object is indirect modified by callee
*/
template<class Cond>
class CallCHI : public MSSACHI<Cond>
{
private:
const CallICFGNode* callsite;
public:
/// Constructors for StoreCHI
/// Constructors for CallCHI
//@{
CallCHI(const CallICFGNode* cs, const MemRegion* m, Cond c = true) :
MSSACHI<Cond>(MSSADEF::CallMSSACHI,m,c), callsite(cs)
Expand Down

0 comments on commit 64e449c

Please sign in to comment.