Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
clang
/
083128f6b13dfa4fc615a838c49b516d901b1ac0
/
.
/
test
/
CodeGenCXX
/
delete-two-arg.cpp
blob: a5b18ba06fc358721c784ce83e552e831667dee2 [
file
] [
log
] [
blame
]
// 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)