brintos

brintos / llvm-project-archived public Read only

0
0
Text · 183 B · 6811351 Raw
10 lines · cpp
1// RUN: %clang_cc1 %s -emit-llvm -triple %itanium_abi_triple -o - | FileCheck %s2struct a {3  static void f();4};5 6void g(a *a) {7  // CHECK: call {{.*}}void @_ZN1a1fEv()8  a->f();9}10