Fix the logic conditioning VX_ENTER/LEAVE_TLS_DTOR
Fix a basic #if/#ifdef confusion which leads to improper choices in some configurations. 2020-10-28 Olivier Hainque <hainque@adacore.com> libgcc/ * config/gthr-vxworks-tls.c: Fix preprocessor logic controlling the definition of VX_ENTER_TLS_DTOR and VX_LEAVE_TLS_DTOR based on a version major check.
This commit is contained in:
parent
291d920395
commit
9df44b9403
@ -115,7 +115,7 @@ extern void __gthread_set_tls_data (void *data);
|
||||
|
||||
#endif
|
||||
|
||||
#ifdef _VXWORKS_MAJOR_EQ(6)
|
||||
#if _VXWORKS_MAJOR_EQ(6)
|
||||
|
||||
extern void __gthread_enter_tls_dtor_context (void);
|
||||
extern void __gthread_leave_tls_dtor_context (void);
|
||||
|
Loading…
Reference in New Issue
Block a user