Testcase for llvm 103572 (7898991).
authorDale Johannesen <dalej@apple.com>
Wed, 12 May 2010 05:04:20 +0000 (05:04 +0000)
committerDale Johannesen <dalej@apple.com>
Wed, 12 May 2010 05:04:20 +0000 (05:04 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@103574 91177308-0d34-0410-b5e6-96231b3b80d8

test/FrontendC++/2010-05-11-alwaysinlineinstantiation.cpp [new file with mode: 0644]

diff --git a/test/FrontendC++/2010-05-11-alwaysinlineinstantiation.cpp b/test/FrontendC++/2010-05-11-alwaysinlineinstantiation.cpp
new file mode 100644 (file)
index 0000000..203b542
--- /dev/null
@@ -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;
+}