The sub-statement of a case statement is not an unevaluated context!

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@89303 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Eli Friedman 2009-11-19 03:14:00 +00:00
Родитель d3c6854153
Коммит 264c1f8ec8
2 изменённых файлов: 34 добавлений и 10 удалений

Просмотреть файл

@ -3037,18 +3037,21 @@ TreeTransform<Derived>::TransformCompoundStmt(CompoundStmt *S,
template<typename Derived>
Sema::OwningStmtResult
TreeTransform<Derived>::TransformCaseStmt(CaseStmt *S) {
// The case value expressions are not potentially evaluated.
EnterExpressionEvaluationContext Unevaluated(SemaRef, Action::Unevaluated);
OwningExprResult LHS(SemaRef), RHS(SemaRef);
{
// The case value expressions are not potentially evaluated.
EnterExpressionEvaluationContext Unevaluated(SemaRef, Action::Unevaluated);
// Transform the left-hand case value.
OwningExprResult LHS = getDerived().TransformExpr(S->getLHS());
if (LHS.isInvalid())
return SemaRef.StmtError();
// Transform the left-hand case value.
LHS = getDerived().TransformExpr(S->getLHS());
if (LHS.isInvalid())
return SemaRef.StmtError();
// Transform the right-hand case value (for the GNU case-range extension).
OwningExprResult RHS = getDerived().TransformExpr(S->getRHS());
if (RHS.isInvalid())
return SemaRef.StmtError();
// Transform the right-hand case value (for the GNU case-range extension).
RHS = getDerived().TransformExpr(S->getRHS());
if (RHS.isInvalid())
return SemaRef.StmtError();
}
// Build the case statement.
// Case statements are always rebuilt so that they will attached to their

Просмотреть файл

@ -0,0 +1,21 @@
// RUN: clang-cc -fsyntax-only -verify %s
template<class T>
static int alpha(T c)
{
return *c; // expected-error{{indirection requires pointer operand}}
}
template<class T>
static void
_shexp_match()
{
switch(1) {
case 1:
alpha(1); // expected-note{{instantiation of function template}}
}
}
int main() {
_shexp_match<char>(); // expected-note{{instantiation of function template}}
return 0;
}