mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-30 09:14:36 +00:00
Merge pull request #415 from kklobe/kk/fix-gcc-mac-compile-error
Fix macOS GCC 11/12 compile error
This commit is contained in:
commit
1f43cfd2b9
@ -1292,7 +1292,7 @@ backtrace_initialize (struct backtrace_state *state, const char *filename,
|
|||||||
else
|
else
|
||||||
{
|
{
|
||||||
if (found_sym)
|
if (found_sym)
|
||||||
backtrace_atomic_store_pointer (&state->syminfo_fn, macho_syminfo);
|
backtrace_atomic_store_pointer (&state->syminfo_fn, &macho_syminfo);
|
||||||
else
|
else
|
||||||
(void) __sync_bool_compare_and_swap (&state->syminfo_fn, NULL,
|
(void) __sync_bool_compare_and_swap (&state->syminfo_fn, NULL,
|
||||||
macho_nosyms);
|
macho_nosyms);
|
||||||
@ -1338,7 +1338,7 @@ backtrace_initialize (struct backtrace_state *state, const char *filename,
|
|||||||
else
|
else
|
||||||
{
|
{
|
||||||
if (found_sym)
|
if (found_sym)
|
||||||
backtrace_atomic_store_pointer (&state->syminfo_fn, macho_syminfo);
|
backtrace_atomic_store_pointer (&state->syminfo_fn, &macho_syminfo);
|
||||||
else
|
else
|
||||||
(void) __sync_bool_compare_and_swap (&state->syminfo_fn, NULL,
|
(void) __sync_bool_compare_and_swap (&state->syminfo_fn, NULL,
|
||||||
macho_nosyms);
|
macho_nosyms);
|
||||||
|
Loading…
Reference in New Issue
Block a user