From: Dmitry Polukhin Date: Thu, 28 Apr 2016 09:56:22 +0000 (+0000) Subject: Revert "[MSVC] PR27337: allow static_cast from private base to derived for WTL" X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b7ef020ef0f7edc5cc8992035fdf7a94e3bad4eb;p=clang Revert "[MSVC] PR27337: allow static_cast from private base to derived for WTL" This reverts commit r267534. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@267865 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/clang/Basic/DiagnosticSemaKinds.td b/include/clang/Basic/DiagnosticSemaKinds.td index afa741077c..b04abc55af 100644 --- a/include/clang/Basic/DiagnosticSemaKinds.td +++ b/include/clang/Basic/DiagnosticSemaKinds.td @@ -5764,9 +5764,6 @@ def err_static_downcast_via_virtual : Error< "cannot cast %0 to %1 via virtual base %2">; def err_downcast_from_inaccessible_base : Error< "cannot cast %select{private|protected}2 base class %1 to %0">; -def ext_ms_downcast_from_inaccessible_base : ExtWarn< - "casting from %select{private|protected}2 base class %1 to derived class %0 is a Microsoft extension">, - InGroup; def err_upcast_to_inaccessible_base : Error< "cannot cast %0 to its %select{private|protected}2 base class %1">; def err_bad_dynamic_cast_not_ref_or_ptr : Error< diff --git a/lib/Sema/SemaCast.cpp b/lib/Sema/SemaCast.cpp index 84a070573f..4a7699b22e 100644 --- a/lib/Sema/SemaCast.cpp +++ b/lib/Sema/SemaCast.cpp @@ -1344,11 +1344,10 @@ TryStaticDowncast(Sema &Self, CanQualType SrcType, CanQualType DestType, } if (!CStyle) { - unsigned Diag = Self.getLangOpts().MSVCCompat - ? diag::ext_ms_downcast_from_inaccessible_base - : diag::err_downcast_from_inaccessible_base; - switch (Self.CheckBaseClassAccess(OpRange.getBegin(), SrcType, DestType, - Paths.front(), Diag)) { + switch (Self.CheckBaseClassAccess(OpRange.getBegin(), + SrcType, DestType, + Paths.front(), + diag::err_downcast_from_inaccessible_base)) { case Sema::AR_accessible: case Sema::AR_delayed: // be optimistic case Sema::AR_dependent: // be optimistic diff --git a/test/SemaCXX/ext_ms_downcast.cpp b/test/SemaCXX/ext_ms_downcast.cpp deleted file mode 100644 index 42feeb4b8c..0000000000 --- a/test/SemaCXX/ext_ms_downcast.cpp +++ /dev/null @@ -1,40 +0,0 @@ -// RUN: %clang_cc1 -fsyntax-only -fms-compatibility -verify %s -// RUN: %clang_cc1 -fsyntax-only -DNO_MS_COMPATIBILITY -verify %s - -// Minimal reproducer. -class A {}; -class B : A {}; // expected-note 2 {{implicitly declared private here}} - -B* foo(A* p) { - return static_cast(p); -#ifdef NO_MS_COMPATIBILITY - // expected-error@-2 {{cannot cast private base class 'A' to 'B'}} -#else - // expected-warning@-4 {{casting from private base class 'A' to derived class 'B' is a Microsoft extension}} -#endif -} - -A* bar(B* p) { - return static_cast(p); // expected-error {{cannot cast 'B' to its private base class 'A'}} -} - -// from atlframe.h -template -class CUpdateUI { -public: - CUpdateUI() { - T* pT = static_cast(this); -#ifdef NO_MS_COMPATIBILITY - // expected-error@-2 {{cannot cast private base class}} -#else - // expected-warning@-4 {{casting from private base class 'CUpdateUI' to derived class 'CMDIFrame' is a Microsoft extension}} -#endif - } -}; - -// from sample WTL/MDIDocVw (mainfrm.h -class CMDIFrame : CUpdateUI {}; -// expected-note@-1 {{implicitly declared private here}} -// expected-note@-2 {{in instantiation of member function}} - -CMDIFrame wndMain;