Files
clang-p2996/clang/test/CodeGenCXX/delete-two-arg.cpp
Mike Stump 8521f06ced Fix for Release-Assert.
llvm-svn: 93348
2010-01-13 20:58:35 +00:00

7 lines
241 B
C++

// RUN: %clang_cc1 -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* %{{.*}}, i32 4)