>From 3c42acd3b4e5941776bc45d529abf5687f9088ff Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Mon, 13 Sep 2021 11:12:54 -0700 Subject: [PATCH] asyncsafe-spin: port to Oracle Studio 12.6 sparc Problem reported by Dennis Clarke via Eric Blake in: https://lists.gnu.org/r/bug-gnulib/2021-09/msg00056.html * lib/asyncsafe-spin.c (asm) [0x590 <= __SUNPRO_C && __STDC__]: #define to __asm. --- ChangeLog | 8 ++++++++ lib/asyncsafe-spin.c | 4 ++++ 2 files changed, 12 insertions(+) diff --git a/ChangeLog b/ChangeLog index d64252c38..6641ed9f5 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +2021-09-13 Paul Eggert + + asyncsafe-spin: port to Oracle Studio 12.6 sparc + Problem reported by Dennis Clarke via Eric Blake in: + https://lists.gnu.org/r/bug-gnulib/2021-09/msg00056.html + * lib/asyncsafe-spin.c (asm) [0x590 <= __SUNPRO_C && __STDC__]: + #define to __asm. + 2021-09-12 Paul Eggert stdint-tests: long long preproc on recent Sun C diff --git a/lib/asyncsafe-spin.c b/lib/asyncsafe-spin.c index 870b7a21b..3771c4c0e 100644 --- a/lib/asyncsafe-spin.c +++ b/lib/asyncsafe-spin.c @@ -27,6 +27,10 @@ # include #endif +#if 0x590 <= __SUNPRO_C && __STDC__ +# define asm __asm +#endif + #if defined _WIN32 && ! defined __CYGWIN__ /* Use Windows threads. */ -- 2.30.2