From e6be5e1c0dd68d8a25145ba9d179eca8943a7e10 Mon Sep 17 00:00:00 2001 From: John McCall Date: Thu, 17 Feb 2011 19:02:56 +0000 Subject: Remove the "conditional save" hashtables from IR generation. llvm-svn: 125761 --- clang/lib/CodeGen/CGExpr.cpp | 5 ----- 1 file changed, 5 deletions(-) (limited to 'clang/lib/CodeGen/CGExpr.cpp') diff --git a/clang/lib/CodeGen/CGExpr.cpp b/clang/lib/CodeGen/CGExpr.cpp index 27316526b16..1b7e7a007ed 100644 --- a/clang/lib/CodeGen/CGExpr.cpp +++ b/clang/lib/CodeGen/CGExpr.cpp @@ -510,11 +510,6 @@ LValue CodeGenFunction::EmitCheckedLValue(const Expr *E) { /// length type, this is not possible. /// LValue CodeGenFunction::EmitLValue(const Expr *E) { - llvm::DenseMap::iterator I = - ConditionalSaveLValueExprs.find(E); - if (I != ConditionalSaveLValueExprs.end()) - return I->second; - switch (E->getStmtClass()) { default: return EmitUnsupportedLValue(E, "l-value expression"); -- cgit v1.2.3