1f51a89d39
These were ignored by git accidentally. We want ALL OF THEM since they all came in the llvm/clang source distribution.
10 lines
149 B
C++
10 lines
149 B
C++
// RUN: %clang_cc1 %s -emit-llvm -o - | FileCheck %s
|
|
struct a {
|
|
static void f();
|
|
};
|
|
|
|
void g(a *a) {
|
|
// CHECK: call void @_ZN1a1fEv()
|
|
a->f();
|
|
}
|