|
210 | 210 | cpuNone, cpuI386, cpuM68k, cpuAlpha, cpuPowerpc, cpuPowerpc64, |
211 | 211 | cpuPowerpc64el, cpuSparc, cpuVm, cpuHppa, cpuIa64, cpuAmd64, cpuMips, |
212 | 212 | cpuMipsel, cpuArm, cpuArm64, cpuJS, cpuNimVM, cpuAVR, cpuMSP430, |
213 | | - cpuSparc64, cpuMips64, cpuMips64el, cpuRiscV32, cpuRiscV64, |
214 | | - cpuEsp, cpuWasm32, cpuE2k, cpuLoongArch64, cpuS390x |
| 213 | + cpuSparc64, cpuS390x, cpuMips64, cpuMips64el, cpuRiscV32, cpuRiscV64, |
| 214 | + cpuEsp, cpuWasm32, cpuE2k, cpuLoongArch64 |
215 | 215 |
|
216 | 216 | type |
217 | 217 | TInfoCPU* = tuple[name: string, intSize: int, endian: Endianness, |
@@ -241,15 +241,15 @@ const |
241 | 241 | (name: "avr", intSize: 16, endian: littleEndian, floatSize: 32, bit: 16), |
242 | 242 | (name: "msp430", intSize: 16, endian: littleEndian, floatSize: 32, bit: 16), |
243 | 243 | (name: "sparc64", intSize: 64, endian: bigEndian, floatSize: 64, bit: 64), |
| 244 | + (name: "s390x", intSize: 64, endian: bigEndian, floatSize: 64, bit: 64), |
244 | 245 | (name: "mips64", intSize: 64, endian: bigEndian, floatSize: 64, bit: 64), |
245 | 246 | (name: "mips64el", intSize: 64, endian: littleEndian, floatSize: 64, bit: 64), |
246 | 247 | (name: "riscv32", intSize: 32, endian: littleEndian, floatSize: 64, bit: 32), |
247 | 248 | (name: "riscv64", intSize: 64, endian: littleEndian, floatSize: 64, bit: 64), |
248 | 249 | (name: "esp", intSize: 32, endian: littleEndian, floatSize: 64, bit: 32), |
249 | 250 | (name: "wasm32", intSize: 32, endian: littleEndian, floatSize: 64, bit: 32), |
250 | 251 | (name: "e2k", intSize: 64, endian: littleEndian, floatSize: 64, bit: 64), |
251 | | - (name: "loongarch64", intSize: 64, endian: littleEndian, floatSize: 64, bit: 64), |
252 | | - (name: "s390x", intSize: 64, endian: bigEndian, floatSize: 64, bit: 64)] |
| 252 | + (name: "loongarch64", intSize: 64, endian: littleEndian, floatSize: 64, bit: 64)] |
253 | 253 |
|
254 | 254 | type |
255 | 255 | Target* = object |
|
0 commit comments