File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 26
26
.globl SafeFetch32_impl
27
27
.globl _SafeFetch32_fault
28
28
.globl _SafeFetch32_continuation
29
+ .type SafeFetch32_impl , %function
29
30
30
31
# Support for int SafeFetch32( int * address , int defaultval) ;
31
32
#
Original file line number Diff line number Diff line change 34
34
#ifdef _WIN32
35
35
// Windows uses Structured Exception Handling
36
36
#include " safefetch_windows.hpp"
37
- #elif defined(ZERO) || defined (_AIX) || defined (ARM32)
37
+ #elif defined(ZERO) || defined (_AIX)
38
38
// These platforms implement safefetch via Posix sigsetjmp/longjmp.
39
39
// This is slower than the other methods and uses more thread stack,
40
40
// but its safe and portable.
41
- // (arm32 uses sigsetjmp/longjmp as long as JDK-8284997 is not solved)
42
41
#include " safefetch_sigjmp.hpp"
43
42
#define SAFEFETCH_METHOD_SIGSETJMP
44
43
#else
You can’t perform that action at this time.
0 commit comments