summaryrefslogtreecommitdiffstats
path: root/test/CodeGenCXX/PR5093-static-member-function.cpp
blob: 681135182bf29188b5949b21d75e7c754d00c1c9 (plain)
1
2
3
4
5
6
7
8
9
// 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();
}