switch to 'b' for branches

This commit is contained in:
Vern Paxson 2024-06-09 13:31:52 -07:00
parent 7b65341104
commit 6272db4cdd
15 changed files with 144 additions and 137 deletions

View file

@ -214,7 +214,7 @@ public:
// True if this instruction always branches elsewhere. Different
// from DoesNotContinue() in that returns & hook breaks do not
// continue, but they are not branches.
bool IsUnconditionalBranch() const { return op == OP_GOTO_i; }
bool IsUnconditionalBranch() const { return op == OP_GOTO_b; }
// True if this instruction is of the form "v1 = v2".
bool IsDirectAssignment() const;