diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-01-26 14:57:05 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-01-26 15:17:28 +0100 |
commit | 598d8194b0ea1a64e0ebba28a86c128bafa57c7c (patch) | |
tree | c81c2a85795c6218327d2c40dc2a52850a7d22ef /include/rtl/alloc.h | |
parent | 64235bc9896911b4abfca47089ac1e71056afea7 (diff) |
Visible function type RTTI for Clang -fsanitize=function
...by adding some further SAL_DLLPUBLIC_RTTI type annotations (cf.
b4f6b26b5a1a78fecfa95ec2eb7ac8b80495d8aa "SAL_DLLPUBLIC_RTTI for proper RTTI
visibility for LLVM") and by making sure relevant function types do not use
incomplete types in their parameter and return types (which would make the RTTI
hidden).
Change-Id: Id7aadcbc0704b9759968ae36266fc9ce11a2e340
Diffstat (limited to 'include/rtl/alloc.h')
-rw-r--r-- | include/rtl/alloc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/rtl/alloc.h b/include/rtl/alloc.h index 6a804928669c..835db155ac44 100644 --- a/include/rtl/alloc.h +++ b/include/rtl/alloc.h @@ -131,7 +131,7 @@ SAL_DLLPUBLIC void SAL_CALL rtl_freeAlignedMemory ( /** Opaque rtl_arena_type. */ -typedef struct rtl_arena_st rtl_arena_type; +typedef struct SAL_DLLPUBLIC_RTTI rtl_arena_st rtl_arena_type; #define RTL_ARENA_NAME_LENGTH 31 |