diff options
author | Anders Carlsson <andersca@mac.com> | 2009-08-16 01:56:34 +0000 |
---|---|---|
committer | Anders Carlsson <andersca@mac.com> | 2009-08-16 01:56:34 +0000 |
commit | d406bf0e8c17012110a8476d03c6f9a97b56ecf7 (patch) | |
tree | a594475362b653e679adae05e4128836e2c5c4cf /lib/Sema/SemaOverload.cpp | |
parent | 276b9f1d814f4f6551cc3000590759a34185d6da (diff) |
Move builtin call checking out into a separate function, make CheckFunctionCall and CheckBlockCall return bool instead. No intended functionality change.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@79157 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Sema/SemaOverload.cpp')
-rw-r--r-- | lib/Sema/SemaOverload.cpp | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/lib/Sema/SemaOverload.cpp b/lib/Sema/SemaOverload.cpp index faf4d82a8b..d45e54a4a5 100644 --- a/lib/Sema/SemaOverload.cpp +++ b/lib/Sema/SemaOverload.cpp @@ -4343,7 +4343,10 @@ Sema::BuildCallToMemberFunction(Scope *S, Expr *MemExprE, RParenLoc)) return true; - return CheckFunctionCall(Method, TheCall.take()).release(); + if (CheckFunctionCall(Method, TheCall.get())) + return true; + + return TheCall.release(); } /// BuildCallToObjectOfClassType - Build a call to an object of class @@ -4549,7 +4552,10 @@ Sema::BuildCallToObjectOfClassType(Scope *S, Expr *Object, if (IsError) return true; - return CheckFunctionCall(Method, TheCall.take()).release(); + if (CheckFunctionCall(Method, TheCall.get())) + return true; + + return TheCall.release(); } /// BuildOverloadedArrowExpr - Build a call to an overloaded @c operator-> |