blob: b8fe4223e70b5d41375482ae9b2cb0916ea42805 [file] [log] [blame]
Mike Stump083e3062009-11-16 06:49:10 +00001// RUN: clang-cc -triple i686-pc-linue-gnu %s -o - -emit-llvm -verify | FileCheck %s
Eli Friedmaneaea8c42009-11-16 05:16:40 +00002
3struct A { void operator delete(void*,__typeof(sizeof(int))); int x; };
4void a(A* x) { delete x; }
5
6// CHECK: call void @_ZN1AdlEPvj(i8* %0, i32 4)