1
0
Fork 0
mirror of https://github.com/tobast/libunwind-eh_elf.git synced 2024-05-05 14:25:16 +02:00

Workaround volatileness warning in tests/ia64-test-setjmp.c

tests/ia64-test-setjmp.c:76: warning: function return types not compatible due to 'volatile'
This commit is contained in:
Tommi Rantala 2012-09-12 11:04:43 +03:00
parent 074e328d46
commit 23fdda6a28

View file

@ -73,7 +73,8 @@ sighandler (int signal, void *siginfo, void *sigcontext)
/* Direct call of doit () at the end of doit () would get optimized by GCC to
a branch. */
static void doit (int n);
static volatile void (*doit_pointer) (int n) = doit;
typedef void (*doit_type) (int);
static volatile doit_type doit_pointer = doit;
static void
doit (int n)