diff options
| author | John McCall <rjmccall@apple.com> | 2011-02-17 19:02:56 +0000 |
|---|---|---|
| committer | John McCall <rjmccall@apple.com> | 2011-02-17 19:02:56 +0000 |
| commit | e6be5e1c0dd68d8a25145ba9d179eca8943a7e10 (patch) | |
| tree | 7e2e7eafb89c17923823e8b0e04a90bea6d36ea2 /clang/lib/CodeGen/CGExprComplex.cpp | |
| parent | 428d75ffd9c009f57e32204f54de337f6dc938ca (diff) | |
| download | llvm-e6be5e1c0dd68d8a25145ba9d179eca8943a7e10.zip llvm-e6be5e1c0dd68d8a25145ba9d179eca8943a7e10.tar.gz llvm-e6be5e1c0dd68d8a25145ba9d179eca8943a7e10.tar.bz2 | |
Remove the "conditional save" hashtables from IR generation.
llvm-svn: 125761
Diffstat (limited to 'clang/lib/CodeGen/CGExprComplex.cpp')
| -rw-r--r-- | clang/lib/CodeGen/CGExprComplex.cpp | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/clang/lib/CodeGen/CGExprComplex.cpp b/clang/lib/CodeGen/CGExprComplex.cpp index 8b4ead8..7b0292b 100644 --- a/clang/lib/CodeGen/CGExprComplex.cpp +++ b/clang/lib/CodeGen/CGExprComplex.cpp @@ -98,12 +98,7 @@ public: //===--------------------------------------------------------------------===// ComplexPairTy Visit(Expr *E) { - llvm::DenseMap<const Expr *, ComplexPairTy>::iterator I = - CGF.ConditionalSaveComplexExprs.find(E); - if (I != CGF.ConditionalSaveComplexExprs.end()) - return I->second; - - return StmtVisitor<ComplexExprEmitter, ComplexPairTy>::Visit(E); + return StmtVisitor<ComplexExprEmitter, ComplexPairTy>::Visit(E); } ComplexPairTy VisitStmt(Stmt *S) { |
