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/CGExpr.cpp | |
parent | 428d75ffd9c009f57e32204f54de337f6dc938ca (diff) | |
download | bcm5719-llvm-e6be5e1c0dd68d8a25145ba9d179eca8943a7e10.tar.gz bcm5719-llvm-e6be5e1c0dd68d8a25145ba9d179eca8943a7e10.zip |
Remove the "conditional save" hashtables from IR generation.
llvm-svn: 125761
Diffstat (limited to 'clang/lib/CodeGen/CGExpr.cpp')
-rw-r--r-- | clang/lib/CodeGen/CGExpr.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
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<const Expr *, LValue>::iterator I = - ConditionalSaveLValueExprs.find(E); - if (I != ConditionalSaveLValueExprs.end()) - return I->second; - switch (E->getStmtClass()) { default: return EmitUnsupportedLValue(E, "l-value expression"); |