Provide definitions for all functions.
authorBenjamin Kramer <benny.kra@googlemail.com>
Sat, 10 Nov 2012 16:10:16 +0000 (16:10 +0000)
committerBenjamin Kramer <benny.kra@googlemail.com>
Sat, 10 Nov 2012 16:10:16 +0000 (16:10 +0000)
ICC refuses to compile a class in an anonymous namespace if some functions
aren't defined. Fixes PR13477.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@167676 91177308-0d34-0410-b5e6-96231b3b80d8

unittests/Support/AlignOfTest.cpp

index f2d11708a2b691eeae384ccd1304d576af018dbc..f01e6609390c18c0099e55eda43620e4128e0190 100644 (file)
@@ -66,6 +66,17 @@ struct V6 : S1 { virtual ~V6(); };
 struct V7 : virtual V2, virtual V6 { virtual ~V7(); };
 struct V8 : V5, virtual V6, V7 { double zz; virtual ~V8(); };
 
+double S6::f() { return 0.0; }
+float D2::g() { return 0.0f; }
+V1::~V1() {}
+V2::~V2() {}
+V3::~V3() {}
+V4::~V4() {}
+V5::~V5() {}
+V6::~V6() {}
+V7::~V7() {}
+V8::~V8() {}
+
 // Ensure alignment is a compile-time constant.
 char LLVM_ATTRIBUTE_UNUSED test_arr1
   [AlignOf<char>::Alignment > 0]