https://bugs.llvm.org/show_bug.cgi?id=49680

            Bug ID: 49680
           Summary: error: clang frontend command failed with exit code
                    134
           Product: clang
           Version: 11.0
          Hardware: PC
                OS: Linux
            Status: NEW
          Severity: enhancement
          Priority: P
         Component: C++
          Assignee: unassignedclangb...@nondot.org
          Reporter: alex.w...@gmx.de
                CC: blitzrak...@gmail.com, dgre...@apple.com,
                    erik.pilking...@gmail.com, llvm-bugs@lists.llvm.org,
                    richard-l...@metafoo.co.uk

Created attachment 24675
  --> https://bugs.llvm.org/attachment.cgi?id=24675&action=edit
Example source code (reduced)

Clang compiler (version clang 9 - clang 13) crash when compiling the following
code:

class Promise_impl {
};
class Promise {
  using Impl = Promise_impl;
  Impl *p;
public:

  Promise() {
      if (p)
        void *h = __builtin_coro_promise(p, __alignof(Promise_impl), true);
  }
} c_func_u;

-- 
You are receiving this mail because:
You are on the CC list for the bug.
_______________________________________________
llvm-bugs mailing list
llvm-bugs@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs

Reply via email to