summaryrefslogtreecommitdiff
path: root/clang/test/CodeGenCXX/PR5093-static-member-function.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'clang/test/CodeGenCXX/PR5093-static-member-function.cpp')
-rw-r--r--clang/test/CodeGenCXX/PR5093-static-member-function.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/clang/test/CodeGenCXX/PR5093-static-member-function.cpp b/clang/test/CodeGenCXX/PR5093-static-member-function.cpp
new file mode 100644
index 0000000..ceab852
--- /dev/null
+++ b/clang/test/CodeGenCXX/PR5093-static-member-function.cpp
@@ -0,0 +1,9 @@
+// RUN: %clang_cc1 %s -emit-llvm -o - | FileCheck %s
+struct a {
+ static void f();
+};
+
+void g(a *a) {
+ // CHECK: call void @_ZN1a1fEv()
+ a->f();
+}