aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2007-12-20 19:14:21 +0000
committerChris Lattner <sabre@nondot.org>2007-12-20 19:14:21 +0000
commit18b2515e1bf8c86a4900792692e42fe1296be28d (patch)
treef8e05049f8213b58a6f72cf36560e7b6945b533a
parent7360f9f2a5445064ae9728d19245104600886235 (diff)
add accessor.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@45262 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--include/clang/AST/Expr.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/clang/AST/Expr.h b/include/clang/AST/Expr.h
index b8487a528c..b82db0e0ff 100644
--- a/include/clang/AST/Expr.h
+++ b/include/clang/AST/Expr.h
@@ -565,6 +565,7 @@ public:
const Expr *getCallee() const { return SubExprs[FN]; }
Expr *getCallee() { return SubExprs[FN]; }
+ void setCallee(Expr *F) { SubExprs[FN] = F; }
/// getNumArgs - Return the number of actual arguments to this call.
///