blob: 8639a8490b231d1c0fb1de103fddbe623380530c [file] [log] [blame]
Hans Wennborg442e4f72013-12-13 22:43:52 +00001// RUN: %clang_cc1 %s -emit-llvm -cxx-abi itanium -o - | FileCheck %s
Anders Carlsson8f4fd602009-09-29 03:54:11 +00002struct a {
3 static void f();
4};
5
6void g(a *a) {
7 // CHECK: call void @_ZN1a1fEv()
8 a->f();
9}