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 | cf0b2d83666804b377dbe05370a5c9b9bafaaa5a (patch) | |
tree | 386537d1a089290c9f10ac4a94dc9e430acf66aa /lib/CodeGen/CGExprScalar.cpp | |
parent | d9015eee474115c8ecf616a02f3ed30be2b91203 (diff) |
Remove the "conditional save" hashtables from IR generation.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@125761 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CGExprScalar.cpp')
-rw-r--r-- | lib/CodeGen/CGExprScalar.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/lib/CodeGen/CGExprScalar.cpp b/lib/CodeGen/CGExprScalar.cpp index 34e247d7c3..3e1debd820 100644 --- a/lib/CodeGen/CGExprScalar.cpp +++ b/lib/CodeGen/CGExprScalar.cpp @@ -150,11 +150,6 @@ public: //===--------------------------------------------------------------------===// Value *Visit(Expr *E) { - llvm::DenseMap<const Expr *, llvm::Value *>::iterator I = - CGF.ConditionalSaveExprs.find(E); - if (I != CGF.ConditionalSaveExprs.end()) - return I->second; - return StmtVisitor<ScalarExprEmitter, Value*>::Visit(E); } |