File tree Expand file tree Collapse file tree 5 files changed +2
-13
lines changed Expand file tree Collapse file tree 5 files changed +2
-13
lines changed Original file line number Diff line number Diff line change @@ -1194,11 +1194,6 @@ AC_DEFUN([OPAL_CONFIG_ASM],[
1194
1194
OPAL_CHECK_CMPXCHG16B
1195
1195
;;
1196
1196
1197
- ia64-*)
1198
- opal_cv_asm_arch="IA64"
1199
- OPAL_CHECK_SYNC_BUILTINS([ opal_cv_asm_builtin="BUILTIN_SYNC"] ,
1200
- [ AC_MSG_ERROR ( [ No atomic primitives available for $host] ) ] )
1201
- ;;
1202
1197
aarch64*)
1203
1198
opal_cv_asm_arch="ARM64"
1204
1199
OPAL_ASM_SUPPORT_64BIT=1
Original file line number Diff line number Diff line change 33
33
/* Architectures */
34
34
#define OPAL_UNSUPPORTED 0000
35
35
#define OPAL_IA32 0010
36
- #define OPAL_IA64 0020
37
36
#define OPAL_X86_64 0030
38
37
#define OPAL_POWERPC32 0050
39
38
#define OPAL_POWERPC64 0051
Original file line number Diff line number Diff line change 16
16
* reserved.
17
17
* Copyright (c) 2017 Research Organization for Information Science
18
18
* and Technology (RIST). All rights reserved.
19
+ * Copyright (c) 2020 Google, LLC. All rights reserved.
19
20
* $COPYRIGHT$
20
21
*
21
22
* Additional copyrights may follow
@@ -175,8 +176,6 @@ enum {
175
176
#include "opal/sys/arm64/atomic.h"
176
177
#elif OPAL_ASSEMBLY_ARCH == OPAL_IA32
177
178
#include "opal/sys/ia32/atomic.h"
178
- #elif OPAL_ASSEMBLY_ARCH == OPAL_IA64
179
- #include "opal/sys/ia64/atomic.h"
180
179
#elif OPAL_ASSEMBLY_ARCH == OPAL_POWERPC32
181
180
#include "opal/sys/powerpc/atomic.h"
182
181
#elif OPAL_ASSEMBLY_ARCH == OPAL_POWERPC64
Original file line number Diff line number Diff line change 44
44
#elif OPAL_ASSEMBLY_ARCH == OPAL_IA32
45
45
#define __NR_process_vm_readv 347
46
46
#define __NR_process_vm_writev 348
47
- #elif OPAL_ASSEMBLY_ARCH == OPAL_IA64
48
- #define __NR_process_vm_readv 1332
49
- #define __NR_process_vm_writev 1333
50
47
#elif OPAL_ASSEMBLY_ARCH == OPAL_POWERPC32
51
48
#define __NR_process_vm_readv 351
52
49
#define __NR_process_vm_writev 352
Original file line number Diff line number Diff line change 14
14
* Copyright (c) 2016-2017 Los Alamos National Security, LLC. All rights
15
15
* reserved.
16
16
* Copyright (c) 2020 Intel, Inc. All rights reserved.
17
+ * Copyright (c) 2020 Google, LLC. All rights reserved.
17
18
* $COPYRIGHT$
18
19
*
19
20
* Additional copyrights may follow
@@ -79,8 +80,6 @@ BEGIN_C_DECLS
79
80
#include "opal/sys/arm64/timer.h"
80
81
#elif OPAL_ASSEMBLY_ARCH == OPAL_IA32
81
82
#include "opal/sys/ia32/timer.h"
82
- #elif OPAL_ASSEMBLY_ARCH == OPAL_IA64
83
- #include "opal/sys/ia64/timer.h"
84
83
#elif OPAL_ASSEMBLY_ARCH == OPAL_POWERPC32
85
84
#include "opal/sys/powerpc/timer.h"
86
85
#elif OPAL_ASSEMBLY_ARCH == OPAL_POWERPC64
You can’t perform that action at this time.
0 commit comments