Skip to content

Commit

Permalink
SVF code formatter
Browse files Browse the repository at this point in the history
  • Loading branch information
yuleisui committed May 9, 2024
1 parent 1d249d3 commit 45cc769
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions svf/include/AE/Core/AbstractValue.h
Original file line number Diff line number Diff line change
Expand Up @@ -126,13 +126,15 @@ class AbstractValue
return *this;
}

AbstractValue& operator=(const IntervalValue& other) {
AbstractValue& operator=(const IntervalValue& other)
{
type = IntervalType;
interval = other;
return *this;
}

AbstractValue& operator=(const AddressValue& other) {
AbstractValue& operator=(const AddressValue& other)
{
type = AddressType;
addr = other;
return *this;
Expand Down
2 changes: 1 addition & 1 deletion svf/include/AE/Svfexe/AbstractInterpretation.h
Original file line number Diff line number Diff line change
Expand Up @@ -365,7 +365,7 @@ class AbstractInterpretation
protected:
// helper functions in handleCycle
bool isFixPointAfterWidening(const ICFGNode* cycle_head,
AbstractState& pre_as);
AbstractState& pre_as);
bool isFixPointAfterNarrowing(const SVF::ICFGNode* cycle_head,
SVF::AbstractState& pre_as);

Expand Down

0 comments on commit 45cc769

Please sign in to comment.