blob: 681135182bf29188b5949b21d75e7c754d00c1c9 [file] [log] [blame]
// RUN: %clang_cc1 %s -emit-llvm -triple %itanium_abi_triple -o - | FileCheck %s
struct a {
static void f();
};
void g(a *a) {
// CHECK: call {{.*}}void @_ZN1a1fEv()
a->f();
}