Index: clang/lib/Sema/TreeTransform.h =================================================================== --- clang/lib/Sema/TreeTransform.h +++ clang/lib/Sema/TreeTransform.h @@ -4252,14 +4252,20 @@ // C++ [dcl.fct]p7: // [When] adding cv-qualifications on top of the function type [...] the // cv-qualifiers are ignored. + // Presumably, [dcl.fct]p7 would have applied to __restrict (and all the other + // qualifiers we support). + if (T->isFunctionType()) + return T; + // C++ [dcl.ref]p1: // when the cv-qualifiers are introduced through the use of a typedef-name // or decltype-specifier [...] the cv-qualifiers are ignored. // Note that [dcl.ref]p1 lists all cases in which cv-qualifiers can be // applied to a reference type. - // FIXME: This removes all qualifiers, not just cv-qualifiers! - if (T->isFunctionType() || T->isReferenceType()) - return T; + if (T->isReferenceType()) { + Quals.removeConst(); + Quals.removeVolatile(); + } // Suppress Objective-C lifetime qualifiers if they don't make sense for the // resulting type. Index: clang/test/SemaCXX/subst-restrict.cpp =================================================================== --- /dev/null +++ clang/test/SemaCXX/subst-restrict.cpp @@ -0,0 +1,18 @@ +// RUN: %clang_cc1 -std=c++17 -verify %s + +// expected-no-diagnostics + +template struct add_restrict { + typedef T __restrict type; +}; + +template struct is_same { + static constexpr bool value = false; +}; + +template struct is_same { + static constexpr bool value = true; +}; + +static_assert(is_same::type>::value, ""); +static_assert(is_same::type>::value, "");