Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
clang
/
fd015353a3c4f528216276f25df5b4d464d7a0cd
/
.
/
test
/
CodeGenCXX
/
delete-two-arg.cpp
blob: b8fe4223e70b5d41375482ae9b2cb0916ea42805 [
file
] [
log
] [
blame
]
// RUN: clang-cc -triple i686-pc-linue-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)