mirror of
https://github.com/opnsense/src.git
synced 2026-02-28 12:20:54 -05:00
6 lines
234 B
C++
6 lines
234 B
C++
// RUN: clang-cc -triple i686-pc-linux-gnu %s -o - -emit-llvm -verify | FileCheck %s
|
|
|
|
struct A { void operator delete(void*,__typeof(sizeof(int))); int x; };
|
|
void a(A* x) { delete x; }
|
|
|
|
// CHECK: call void @_ZN1AdlEPvj(i8* %0, i32 4)
|