aboutsummaryrefslogtreecommitdiffstats
path: root/test/FrontendC++
diff options
context:
space:
mode:
authorDale Johannesen <dalej@apple.com>2010-05-12 05:04:20 +0000
committerDale Johannesen <dalej@apple.com>2010-05-12 05:04:20 +0000
commit414b549e764607d9bf767a82057c10cd8f2c3be1 (patch)
treeedc1ff3a9cc333536c12cfd06815f1bec53b91f1 /test/FrontendC++
parent45ad6ff8701825cf79c5d3ce42e2b5a88dc85f65 (diff)
downloadexternal_llvm-414b549e764607d9bf767a82057c10cd8f2c3be1.zip
external_llvm-414b549e764607d9bf767a82057c10cd8f2c3be1.tar.gz
external_llvm-414b549e764607d9bf767a82057c10cd8f2c3be1.tar.bz2
Testcase for llvm 103572 (7898991).
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@103574 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/FrontendC++')
-rw-r--r--test/FrontendC++/2010-05-11-alwaysinlineinstantiation.cpp31
1 files changed, 31 insertions, 0 deletions
diff --git a/test/FrontendC++/2010-05-11-alwaysinlineinstantiation.cpp b/test/FrontendC++/2010-05-11-alwaysinlineinstantiation.cpp
new file mode 100644
index 0000000..203b542
--- /dev/null
+++ b/test/FrontendC++/2010-05-11-alwaysinlineinstantiation.cpp
@@ -0,0 +1,31 @@
+// RUN: %llvmgxx -xc++ %s -c -o - | llvm-dis | not grep ZN12basic_stringIcEC1Ev
+// RUN: %llvmgxx -xc++ %s -c -o - | llvm-dis | grep ZN12basic_stringIcED1Ev | count 2
+
+template<class charT>
+class basic_string
+{
+public:
+ basic_string();
+ ~basic_string();
+};
+
+template <class charT>
+__attribute__ ((__visibility__("hidden"), __always_inline__)) inline
+basic_string<charT>::basic_string()
+{
+}
+
+template <class charT>
+inline
+basic_string<charT>::~basic_string()
+{
+}
+
+typedef basic_string<char> string;
+
+extern template class basic_string<char>;
+
+int main()
+{
+ string s;
+}