diff options
author | Daniel Dunbar <daniel@zuster.org> | 2012-03-09 01:51:51 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2012-03-09 01:51:51 +0000 |
commit | 3d13c5a1e72ed8f8be9c083791d30643d1b1ec43 (patch) | |
tree | 6c29efdfbe48d1b6141cb7ae80761e075dc5af2c /lib/CodeGen/CGExprScalar.cpp | |
parent | 76aadc346c3a4c363238a1e1232f324c3355d9e0 (diff) |
[AST] Reduce Decl::getASTContext() calls.
- This function is not at all free; pass it around along some hot paths instead
of recomputing it deep inside various VarDecl methods.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@152363 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CGExprScalar.cpp')
-rw-r--r-- | lib/CodeGen/CGExprScalar.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/CGExprScalar.cpp b/lib/CodeGen/CGExprScalar.cpp index 8ed36aac5f..9da493448a 100644 --- a/lib/CodeGen/CGExprScalar.cpp +++ b/lib/CodeGen/CGExprScalar.cpp @@ -217,7 +217,7 @@ public: VarDecl *VD = dyn_cast<VarDecl>(E->getDecl()); if (!VD && !isa<EnumConstantDecl>(E->getDecl())) return EmitLoadOfLValue(E); - if (VD && !VD->isUsableInConstantExpressions()) + if (VD && !VD->isUsableInConstantExpressions(CGF.getContext())) return EmitLoadOfLValue(E); // This is an enumerator or a variable which is usable in constant |