Skip to content

Commit

Permalink
mipsel: allocator: Disable musttail compile error
Browse files Browse the repository at this point in the history
  • Loading branch information
klzgrad committed Nov 20, 2024
1 parent ab5faf3 commit ed05303
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@
// PA_MUSTTAIL return Func1(d + 1); // `Func1()` will be tail-called.
// }
// ```
#if PA_HAS_CPP_ATTRIBUTE(clang::musttail)
#if PA_HAS_CPP_ATTRIBUTE(clang::musttail) && !defined(__MIPSEL__)
#define PA_MUSTTAIL [[clang::musttail]]
#else
#define PA_MUSTTAIL
Expand Down

0 comments on commit ed05303

Please # to comment.