зеркало из https://github.com/microsoft/clang-1.git
Code simplification.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@108996 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Родитель
45483b4e0c
Коммит
df054dbc15
|
@ -80,23 +80,13 @@ CodeGenFunction::EmitCXXExprWithTemporaries(const CXXExprWithTemporaries *E,
|
|||
llvm::Value *AggLoc,
|
||||
bool IsAggLocVolatile,
|
||||
bool IsInitializer) {
|
||||
RValue RV;
|
||||
{
|
||||
RunCleanupsScope Scope(*this);
|
||||
|
||||
RV = EmitAnyExpr(E->getSubExpr(), AggLoc, IsAggLocVolatile,
|
||||
RunCleanupsScope Scope(*this);
|
||||
return EmitAnyExpr(E->getSubExpr(), AggLoc, IsAggLocVolatile,
|
||||
/*IgnoreResult=*/false, IsInitializer);
|
||||
}
|
||||
return RV;
|
||||
}
|
||||
|
||||
LValue CodeGenFunction::EmitCXXExprWithTemporariesLValue(
|
||||
const CXXExprWithTemporaries *E) {
|
||||
LValue LV;
|
||||
{
|
||||
RunCleanupsScope Scope(*this);
|
||||
|
||||
LV = EmitLValue(E->getSubExpr());
|
||||
}
|
||||
return LV;
|
||||
RunCleanupsScope Scope(*this);
|
||||
return EmitLValue(E->getSubExpr());
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче