[llvm-bugs] [Bug 40710] New: Function has token parameter but isn't an intrinsic

via llvm-bugs llvm-bugs at lists.llvm.org
Tue Feb 12 16:41:00 PST 2019


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

            Bug ID: 40710
           Summary: Function has token parameter but isn't an intrinsic
           Product: clang
           Version: unspecified
          Hardware: PC
                OS: Windows NT
            Status: NEW
          Severity: enhancement
          Priority: P
         Component: C++
          Assignee: unassignedclangbugs at nondot.org
          Reporter: compnerd at compnerd.org
                CC: blitzrakete at gmail.com, dgregor at apple.com,
                    erik.pilkington at gmail.com, llvm-bugs at lists.llvm.org,
                    richard-llvm at metafoo.co.uk

Reduced from ICU 61:

```                                                                             
// RUN: %clang_cc1 -triple x86_64-pc-windows-msvc19.0.0 -emit-obj -o /dev/null
-O1 -fcxx-exceptions -fexceptions %s
struct T {
  virtual ~T();
};

void f();

struct S {
  virtual ~S();
  T t_[1];
};

S::~S() { f(); }
```

-- 
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/20190213/0c516a20/attachment.html>


More information about the llvm-bugs mailing list