diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/clang/AST/Expr.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/clang/AST/Expr.h b/include/clang/AST/Expr.h index 2a87f58835..665639128e 100644 --- a/include/clang/AST/Expr.h +++ b/include/clang/AST/Expr.h @@ -250,6 +250,8 @@ public: /// folded, but discard the result. bool isEvaluatable(ASTContext &Ctx) const; + bool HasSideEffects(ASTContext &Ctx) const; + /// EvaluateAsInt - Call Evaluate and return the folded integer. This /// must be called on an expression that constant folds to an integer. llvm::APSInt EvaluateAsInt(ASTContext &Ctx) const; |