<html>
    <head>
      <base href="https://bugs.llvm.org/">
    </head>
    <body><table border="1" cellspacing="0" cellpadding="8">
        <tr>
          <th>Bug ID</th>
          <td><a class="bz_bug_link 
          bz_status_NEW "
   title="NEW - cfi-icall + ThinLTO: no jump table entry created for functions defined in both ThinLTO module and merged module"
   href="https://bugs.llvm.org/show_bug.cgi?id=33832">33832</a>
          </td>
        </tr>

        <tr>
          <th>Summary</th>
          <td>cfi-icall + ThinLTO: no jump table entry created for functions defined in both ThinLTO module and merged module
          </td>
        </tr>

        <tr>
          <th>Product</th>
          <td>libraries
          </td>
        </tr>

        <tr>
          <th>Version</th>
          <td>trunk
          </td>
        </tr>

        <tr>
          <th>Hardware</th>
          <td>PC
          </td>
        </tr>

        <tr>
          <th>OS</th>
          <td>Linux
          </td>
        </tr>

        <tr>
          <th>Status</th>
          <td>NEW
          </td>
        </tr>

        <tr>
          <th>Severity</th>
          <td>enhancement
          </td>
        </tr>

        <tr>
          <th>Priority</th>
          <td>P
          </td>
        </tr>

        <tr>
          <th>Component</th>
          <td>Interprocedural Optimizations
          </td>
        </tr>

        <tr>
          <th>Assignee</th>
          <td>unassignedbugs@nondot.org
          </td>
        </tr>

        <tr>
          <th>Reporter</th>
          <td>peter@pcc.me.uk
          </td>
        </tr>

        <tr>
          <th>CC</th>
          <td>llvm-bugs@lists.llvm.org
          </td>
        </tr></table>
      <p>
        <div>
        <pre>$ cat icall1.cpp
inline void f() {}

void sink(void (*)());

static struct A {
  A() { sink(f); }
} a;
$ cat icall2.cpp
inline void f() {}

void sink(void (*)()) {}

int main() {
  void (*p)() = f;
  p();
}
$ clang++ icall{1,2}.cpp -fsanitize=cfi-icall -flto=thin -fuse-ld=lld -O2 
-fno-sanitize-trap=cfi-icall -g
$ ./a.out 
icall2.cpp:7:3: runtime error: control flow integrity check for type 'void ()'
failed during indirect function call
/tmp/icall1.cpp:1: note: f() defined here</pre>
        </div>
      </p>


      <hr>
      <span>You are receiving this mail because:</span>

      <ul>
          <li>You are on the CC list for the bug.</li>
      </ul>
    </body>
</html>