diff options
author | Anders Carlsson <andersca@mac.com> | 2008-12-19 20:58:05 +0000 |
---|---|---|
committer | Anders Carlsson <andersca@mac.com> | 2008-12-19 20:58:05 +0000 |
commit | 1c0cfd4599e816cfd7a8f348286bf0ad79652ffc (patch) | |
tree | f4596e1bd04d54571b355824f66b0a0fe6acb437 /lib/AST/Expr.cpp | |
parent | 06c58b191f969e2ae5308cc9b6540bad9511f4ef (diff) |
Get rid of the old Expr::Evaluate variant.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@61260 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/AST/Expr.cpp')
-rw-r--r-- | lib/AST/Expr.cpp | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/lib/AST/Expr.cpp b/lib/AST/Expr.cpp index c01c973cf5..8aaea7ac9f 100644 --- a/lib/AST/Expr.cpp +++ b/lib/AST/Expr.cpp @@ -763,9 +763,11 @@ bool Expr::isIntegerConstantExpr(llvm::APSInt &Result, ASTContext &Ctx, // If this is a call to a builtin function, constant fold it otherwise // reject it. if (CE->isBuiltinCall()) { - APValue ResultAP; - if (CE->Evaluate(ResultAP, Ctx)) { - Result = ResultAP.getInt(); + EvalResult EvalResult; + if (CE->Evaluate(EvalResult, Ctx)) { + assert(!EvalResult.HasSideEffects && + "Foldable builtin call should not have side effects!"); + Result = EvalResult.Val.getInt(); break; // It is a constant, expand it. } } |