diff options
| author | Douglas Gregor <dgregor@apple.com> | 2009-05-26 18:54:04 +0000 |
|---|---|---|
| committer | Douglas Gregor <dgregor@apple.com> | 2009-05-26 18:54:04 +0000 |
| commit | 31cf12c0a628ce452e325eec45eaed307059df27 (patch) | |
| tree | 7470279d12c5dc2a47215ff25b518964544f08cf /clang/lib/AST/StmtIterator.cpp | |
| parent | 7d287cb7ed0188f85fa4730f3e3c079aff5457d9 (diff) | |
| download | bcm5719-llvm-31cf12c0a628ce452e325eec45eaed307059df27.tar.gz bcm5719-llvm-31cf12c0a628ce452e325eec45eaed307059df27.zip | |
When evaluating a VarDecl as a constant or determining whether it is
an integral constant expression, maintain a cache of the value and the
is-an-ICE flag within the VarDecl itself. This eliminates
exponential-time behavior of the Fibonacci template metaprogram.
llvm-svn: 72428
Diffstat (limited to 'clang/lib/AST/StmtIterator.cpp')
| -rw-r--r-- | clang/lib/AST/StmtIterator.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/lib/AST/StmtIterator.cpp b/clang/lib/AST/StmtIterator.cpp index 20024f513ff..5c22e28894f 100644 --- a/clang/lib/AST/StmtIterator.cpp +++ b/clang/lib/AST/StmtIterator.cpp @@ -140,14 +140,14 @@ Stmt*& StmtIteratorBase::GetDeclExpr() const { if (inDeclGroup()) { VarDecl* VD = cast<VarDecl>(*DGI); - return VD->Init; + return *VD->getInitAddress(); } assert (inDecl()); if (VarDecl* VD = dyn_cast<VarDecl>(decl)) { assert (VD->Init); - return VD->Init; + return *VD->getInitAddress(); } EnumConstantDecl* ECD = cast<EnumConstantDecl>(decl); |

