From: Hans Wennborg Date: Thu, 4 Sep 2014 23:48:47 +0000 (+0000) Subject: clang/test/CXX/drs/dr5xx.cpp: Suppress dr547 also for MinGW X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ff29cb29817286aca98cec3c74760a351f06c344;p=clang clang/test/CXX/drs/dr5xx.cpp: Suppress dr547 also for MinGW This is a follow-up to r216841. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@217204 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/CXX/drs/dr5xx.cpp b/test/CXX/drs/dr5xx.cpp index d7c8fa4283..de98c39695 100644 --- a/test/CXX/drs/dr5xx.cpp +++ b/test/CXX/drs/dr5xx.cpp @@ -517,7 +517,8 @@ namespace dr546 { // dr546: yes template void A::f() { T::error; } } -#if !defined(_M_IX86) // This is incompatible to attribute(thiscall). +// This is incompatible to attribute(thiscall). +#if !defined(_M_IX86) && !defined(__MINGW32__) && !defined(__MINGW64__) namespace dr547 { // d547: yes template struct X; template struct X {};