cor3ntin created this revision. cor3ntin requested review of this revision. Herald added a project: clang. Herald added a subscriber: cfe-commits.
This fixes in a regression introduced by 6eeda06c1 <https://reviews.llvm.org/rG6eeda06c1d22da2b9fe96a2569a8a0f8e4f36880>. When deducing the return type of nested function calls, only the return type of the outermost expression should be ignored. Instead of assuming all contextes nested in a discared statements are themselves discarded, only assume that in immediate contexts. Similarly, only consider contextes immediately in an immediate or discarded statement as being themselves immediate. Repository: rG LLVM Github Monorepo https://reviews.llvm.org/D115228 Files: clang/include/clang/Sema/Sema.h clang/test/CXX/stmt.stmt/stmt.select/stmt.if/p2.cpp Index: clang/test/CXX/stmt.stmt/stmt.select/stmt.if/p2.cpp =================================================================== --- clang/test/CXX/stmt.stmt/stmt.select/stmt.if/p2.cpp +++ clang/test/CXX/stmt.stmt/stmt.select/stmt.if/p2.cpp @@ -159,4 +159,19 @@ surprise: {} } } + +namespace deduced_return_type_in_discareded_statement { + + template <typename T> + auto a(const T& t) { + return t; + } + + void f() { + if constexpr (false) { + a(a(0)); + } + } +} + #endif Index: clang/include/clang/Sema/Sema.h =================================================================== --- clang/include/clang/Sema/Sema.h +++ clang/include/clang/Sema/Sema.h @@ -1324,12 +1324,12 @@ bool isImmediateFunctionContext() const { return Context == ExpressionEvaluationContext::ImmediateFunctionContext || - InImmediateFunctionContext; + (Context == ExpressionEvaluationContext::DiscardedStatement && InImmediateFunctionContext); } bool isDiscardedStatementContext() const { - return Context == ExpressionEvaluationContext::DiscardedStatement || - InDiscardedStatement; + return Context == ExpressionEvaluationContext::DiscardedStatement || + (Context == ExpressionEvaluationContext::ImmediateFunctionContext && InDiscardedStatement); } };
Index: clang/test/CXX/stmt.stmt/stmt.select/stmt.if/p2.cpp =================================================================== --- clang/test/CXX/stmt.stmt/stmt.select/stmt.if/p2.cpp +++ clang/test/CXX/stmt.stmt/stmt.select/stmt.if/p2.cpp @@ -159,4 +159,19 @@ surprise: {} } } + +namespace deduced_return_type_in_discareded_statement { + + template <typename T> + auto a(const T& t) { + return t; + } + + void f() { + if constexpr (false) { + a(a(0)); + } + } +} + #endif Index: clang/include/clang/Sema/Sema.h =================================================================== --- clang/include/clang/Sema/Sema.h +++ clang/include/clang/Sema/Sema.h @@ -1324,12 +1324,12 @@ bool isImmediateFunctionContext() const { return Context == ExpressionEvaluationContext::ImmediateFunctionContext || - InImmediateFunctionContext; + (Context == ExpressionEvaluationContext::DiscardedStatement && InImmediateFunctionContext); } bool isDiscardedStatementContext() const { - return Context == ExpressionEvaluationContext::DiscardedStatement || - InDiscardedStatement; + return Context == ExpressionEvaluationContext::DiscardedStatement || + (Context == ExpressionEvaluationContext::ImmediateFunctionContext && InDiscardedStatement); } };
_______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits