From 222e2a7620e6520ffaf4fc4e69d79c18da31542e Mon Sep 17 00:00:00 2001 From: "Zancanaro; Carlo" Date: Mon, 24 Sep 2012 09:58:17 +1000 Subject: Add the clang library to the repo (with some of my changes, too). --- clang/test/CodeGenCXX/c-linkage.cpp | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 clang/test/CodeGenCXX/c-linkage.cpp (limited to 'clang/test/CodeGenCXX/c-linkage.cpp') diff --git a/clang/test/CodeGenCXX/c-linkage.cpp b/clang/test/CodeGenCXX/c-linkage.cpp new file mode 100644 index 0000000..b1f07b7 --- /dev/null +++ b/clang/test/CodeGenCXX/c-linkage.cpp @@ -0,0 +1,13 @@ +// RUN: %clang_cc1 -emit-llvm -o - %s | FileCheck %s +// pr6644 + +extern "C" { + namespace N { + struct X { + virtual void f(); + }; + void X::f() { } + } +} + +// CHECK: define void @_ZN1N1X1fEv -- cgit v1.2.3