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 21, 2024
1 parent 9a5a6cd commit 42ea664
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 42ea664

Please sign in to comment.