Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / CodeGenCXX / PR5093-static-member-function.cpp
blob681135182bf29188b5949b21d75e7c754d00c1c9
1 // RUN: %clang_cc1 %s -emit-llvm -triple %itanium_abi_triple -o - | FileCheck %s
2 struct a {
3 static void f();
4 };
6 void g(a *a) {
7 // CHECK: call {{.*}}void @_ZN1a1fEv()
8 a->f();