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 @@ -1234,14 +1234,6 @@ AC_DEFUN([OPAL_CONFIG_ASM],[
1234
1234
[ AC_MSG_ERROR ( [ No atomic primitives available for $host] ) ] )
1235
1235
;;
1236
1236
1237
- mips-*|mips64*)
1238
- # Should really find some way to make sure that we are on
1239
- # a MIPS III machine (r4000 and later)
1240
- opal_cv_asm_arch="MIPS"
1241
- OPAL_CHECK_SYNC_BUILTINS([ opal_cv_asm_builtin="BUILTIN_SYNC"] ,
1242
- [ AC_MSG_ERROR ( [ No atomic primitives available for $host] ) ] )
1243
- ;;
1244
-
1245
1237
powerpc-*|powerpc64-*|powerpcle-*|powerpc64le-*|rs6000-*|ppc-*)
1246
1238
OPAL_CHECK_POWERPC_REG
1247
1239
if test "$ac_cv_sizeof_long" = "4" ; then
Original file line number Diff line number Diff line change 40
40
#define OPAL_SPARC 0060
41
41
#define OPAL_SPARCV9_32 0061
42
42
#define OPAL_SPARCV9_64 0062
43
- #define OPAL_MIPS 0070
44
43
#define OPAL_ARM 0100
45
44
#define OPAL_ARM64 0101
46
45
#define OPAL_BUILTIN_SYNC 0200
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 65
65
#define __NR_process_vm_readv 270
66
66
#define __NR_process_vm_writev 271
67
67
68
- #elif OPAL_ASSEMBLY_ARCH == OPAL_MIPS
69
-
70
- #if _MIPS_SIM == _MIPS_SIM_ABI64
71
-
72
- #define __NR_process_vm_readv 5304
73
- #define __NR_process_vm_writev 5305
74
-
75
- #elif _MIPS_SIM == _MIPS_SIM_NABI32
76
-
77
- #define __NR_process_vm_readv 6309
78
- #define __NR_process_vm_writev 6310
79
-
80
- #else
81
-
82
- #error "Unsupported MIPS architecture for process_vm_readv and process_vm_writev syscalls"
83
-
84
- #endif
85
-
86
68
#else
87
69
#error "Unsupported architecture for process_vm_readv and process_vm_writev syscalls"
88
70
#endif
You can’t perform that action at this time.
0 commit comments