opnsense-src/test/CodeGenCXX/delete-two-arg.cpp

7 lines
241 B
C++
Raw Normal View History

2010-01-01 05:34:51 -05:00
// RUN: %clang_cc1 -triple i686-pc-linux-gnu %s -o - -emit-llvm -verify | FileCheck %s
2009-11-18 09:59:57 -05:00
struct A { void operator delete(void*,__typeof(sizeof(int))); int x; };
void a(A* x) { delete x; }
2010-01-15 10:39:40 -05:00
// CHECK: call void @_ZN1AdlEPvj(i8* %{{.*}}, i32 4)