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: [email protected]
          Reporter: [email protected]
                CC: [email protected], [email protected],
                    [email protected], [email protected],
                    [email protected]

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
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs

Reply via email to