Skip to content

Commit

Permalink
Merge pull request #3 from tokatoka/master
Browse files Browse the repository at this point in the history
LLVM 17 fix (to symcc branch)
  • Loading branch information
aurelf authored Nov 23, 2023
2 parents 47e4dde + 7add95b commit b35a256
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion qsym/pintool/expr.h
Original file line number Diff line number Diff line change
Expand Up @@ -362,7 +362,7 @@ class ConstantExpr : public Expr {
inline llvm::APInt value() const { return value_; }
inline bool isZero() const { return value_ == 0; }
inline bool isOne() const { return value_ == 1; }
inline bool isAllOnes() const { return value_.isAllOnesValue(); }
inline bool isAllOnes() const { return value_.isAllOnes(); }
static bool classOf(const Expr& e) { return e.kind() == Constant; }
UINT32 getActiveBits() const { return value_.getActiveBits(); }
void print(ostream& os, UINT depth) const override;
Expand Down

0 comments on commit b35a256

Please sign in to comment.