[LLVMbugs] [Bug 20348] New: clang-cl: cannot compile this non-trivial argument copy for thunk yet

bugzilla-daemon at llvm.org bugzilla-daemon at llvm.org
Thu Jul 17 16:08:24 PDT 2014


http://llvm.org/bugs/show_bug.cgi?id=20348

            Bug ID: 20348
           Summary: clang-cl: cannot compile this non-trivial argument
                    copy for thunk yet
           Product: clang
           Version: unspecified
          Hardware: PC
                OS: Linux
            Status: NEW
          Severity: normal
          Priority: P
         Component: Frontend
          Assignee: unassignedclangbugs at nondot.org
          Reporter: ehsan at mozilla.com
                CC: llvmbugs at cs.uiuc.edu
    Classification: Unclassified

$ cat js-ipc3.cc
class ObjectVariant {
  ~ObjectVariant();
};
class A {
 virtual void m_fn1(ObjectVariant);
};
class B : virtual A {
  B();
  void m_fn1(ObjectVariant);
};
void B::m_fn1(ObjectVariant) {}

$ clang-cl -c js-ipc3.cc -m32
js-ipc3.cc(11,28) :  error: cannot compile this non-trivial argument copy for
thunk yet
void B::m_fn1(ObjectVariant) {}
                           ^
1 error generated.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-bugs/attachments/20140717/0dcad5e8/attachment.html>


More information about the llvm-bugs mailing list