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

Martin Storsjö via Phabricator via cfe-commits cfe-commits at lists.llvm.org
Fri May 31 03:06:12 PDT 2019


mstorsjo added a comment.

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.


Repository:
  rL LLVM

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

https://reviews.llvm.org/D62435





More information about the cfe-commits mailing list