diff options
author | Douglas Gregor <dgregor@apple.com> | 2009-11-23 11:41:28 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2009-11-23 11:41:28 +0000 |
commit | 0da76df9218d7c27b471b0a4d83a5b29fe24e5b4 (patch) | |
tree | 5554847f7a17fd1f639cb65f3148c399e45da367 /lib/Sema/TreeTransform.h | |
parent | f155dbf901b77f0faa90a48670c0bdae7fbdea2d (diff) |
Centralize and complete the computation of value- and type-dependence for DeclRefExprs
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@89649 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Sema/TreeTransform.h')
-rw-r--r-- | lib/Sema/TreeTransform.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Sema/TreeTransform.h b/lib/Sema/TreeTransform.h index dcc0d184a1..ecac31a3e7 100644 --- a/lib/Sema/TreeTransform.h +++ b/lib/Sema/TreeTransform.h @@ -1643,7 +1643,7 @@ public: FunctionDecl *Builtin = cast<FunctionDecl>(*Lookup.first); Expr *Callee = new (SemaRef.Context) DeclRefExpr(Builtin, Builtin->getType(), - BuiltinLoc, false, false); + BuiltinLoc); SemaRef.UsualUnaryConversions(Callee); // Build the CallExpr |