aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/CodeGenFunction.h
diff options
context:
space:
mode:
authorJohn McCall <rjmccall@apple.com>2011-02-17 19:02:56 +0000
committerJohn McCall <rjmccall@apple.com>2011-02-17 19:02:56 +0000
commitcf0b2d83666804b377dbe05370a5c9b9bafaaa5a (patch)
tree386537d1a089290c9f10ac4a94dc9e430acf66aa /lib/CodeGen/CodeGenFunction.h
parentd9015eee474115c8ecf616a02f3ed30be2b91203 (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/CodeGenFunction.h')
-rw-r--r--lib/CodeGen/CodeGenFunction.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/lib/CodeGen/CodeGenFunction.h b/lib/CodeGen/CodeGenFunction.h
index d35a400f7d..120eab484d 100644
--- a/lib/CodeGen/CodeGenFunction.h
+++ b/lib/CodeGen/CodeGenFunction.h
@@ -592,13 +592,6 @@ public:
/// when the NRVO has been applied to this variable.
llvm::DenseMap<const VarDecl *, llvm::Value *> NRVOFlags;
- /// \brief A mapping from 'Save' expression in a conditional expression
- /// to the IR for this expression. Used to implement IR gen. for Gnu
- /// extension's missing LHS expression in a conditional operator expression.
- llvm::DenseMap<const Expr *, llvm::Value *> ConditionalSaveExprs;
- llvm::DenseMap<const Expr *, ComplexPairTy> ConditionalSaveComplexExprs;
- llvm::DenseMap<const Expr *, LValue> ConditionalSaveLValueExprs;
-
EHScopeStack EHStack;
/// i32s containing the indexes of the cleanup destinations.