[PATCH] D62435: Add Attribute NoThrow as an Exception Specifier Type

Erich Keane via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Fri May 31 06:30:51 PDT 2019


erichkeane added a comment.

In D62435#1524824 <https://reviews.llvm.org/D62435#1524824>, @mstorsjo wrote:

> This change broke compiling Qt on MinGW, see https://bugs.llvm.org/show_bug.cgi?id=42089. Trivially reproducible by trying to compile a snippet that looks like this:
>
>   class Foo {
>   public:
>           __attribute__((nothrow)) void __attribute__((__stdcall__)) Bar();
>   };
>  
>   void Foo::Bar() {
>   }
>
>
> Reproducible by compiling the same snippet for a windows-msvc target as well.


Yikes, thanks for the report!  I'll look at it this morning.


Repository:
  rL LLVM

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D62435/new/

https://reviews.llvm.org/D62435





More information about the llvm-commits mailing list