From: Rafael Espindola Date: Thu, 22 Mar 2018 22:57:48 +0000 (+0000) Subject: Add a test. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8a360243157e3a98dbddd9067202d04fa0cefe0b;p=clang Add a test. This would have found the regression in r328238. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@328263 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/CodeGenCXX/rtti-hidden.cpp b/test/CodeGenCXX/rtti-hidden.cpp new file mode 100644 index 0000000000..3ae487f580 --- /dev/null +++ b/test/CodeGenCXX/rtti-hidden.cpp @@ -0,0 +1,10 @@ +// RUN: %clang_cc1 %s -triple=x86_64-pc-linux -emit-llvm -o - | FileCheck %s + +// Test that this is not hidden. +// CHECK: @_ZTVN10__cxxabiv120__si_class_type_infoE = external global + +class foo { + virtual void baz(); +}; +struct __attribute__((__visibility__("hidden"))) bar : public foo {}; +bar zed;