File tree Expand file tree Collapse file tree 4 files changed +0
-29
lines changed Expand file tree Collapse file tree 4 files changed +0
-29
lines changed Original file line number Diff line number Diff line change @@ -1233,14 +1233,6 @@ AC_DEFUN([OPAL_CONFIG_ASM],[
1233
1233
[ AC_MSG_ERROR ( [ No atomic primitives available for $host] ) ] )
1234
1234
;;
1235
1235
1236
- mips-*|mips64*)
1237
- # Should really find some way to make sure that we are on
1238
- # a MIPS III machine (r4000 and later)
1239
- opal_cv_asm_arch="MIPS"
1240
- OPAL_CHECK_SYNC_BUILTINS([ opal_cv_asm_builtin="BUILTIN_SYNC"] ,
1241
- [ AC_MSG_ERROR ( [ No atomic primitives available for $host] ) ] )
1242
- ;;
1243
-
1244
1236
powerpc-*|powerpc64-*|powerpcle-*|powerpc64le-*|rs6000-*|ppc-*)
1245
1237
OPAL_CHECK_POWERPC_REG
1246
1238
if test "$ac_cv_sizeof_long" = "4" ; then
Original file line number Diff line number Diff line change 39
39
#define OPAL_SPARC 0060
40
40
#define OPAL_SPARCV9_32 0061
41
41
#define OPAL_SPARCV9_64 0062
42
- #define OPAL_MIPS 0070
43
42
#define OPAL_ARM 0100
44
43
#define OPAL_ARM64 0101
45
44
#define OPAL_S390 0110
Original file line number Diff line number Diff line change @@ -177,8 +177,6 @@ enum {
177
177
#include "opal/sys/ia32/atomic.h"
178
178
#elif OPAL_ASSEMBLY_ARCH == OPAL_IA64
179
179
#include "opal/sys/ia64/atomic.h"
180
- #elif OPAL_ASSEMBLY_ARCH == OPAL_MIPS
181
- #include "opal/sys/mips/atomic.h"
182
180
#elif OPAL_ASSEMBLY_ARCH == OPAL_POWERPC32
183
181
#include "opal/sys/powerpc/atomic.h"
184
182
#elif OPAL_ASSEMBLY_ARCH == OPAL_POWERPC64
Original file line number Diff line number Diff line change 64
64
#define __NR_process_vm_readv 270
65
65
#define __NR_process_vm_writev 271
66
66
67
- #elif OPAL_ASSEMBLY_ARCH == OPAL_MIPS
68
-
69
- #if _MIPS_SIM == _MIPS_SIM_ABI64
70
-
71
- #define __NR_process_vm_readv 5304
72
- #define __NR_process_vm_writev 5305
73
-
74
- #elif _MIPS_SIM == _MIPS_SIM_NABI32
75
-
76
- #define __NR_process_vm_readv 6309
77
- #define __NR_process_vm_writev 6310
78
-
79
- #else
80
-
81
- #error "Unsupported MIPS architecture for process_vm_readv and process_vm_writev syscalls"
82
-
83
- #endif
84
-
85
67
#elif OPAL_ASSEMBLY_ARCH == OPAL_S390
86
68
87
69
#define __NR_process_vm_readv 340
You can’t perform that action at this time.
0 commit comments