diff options
Diffstat (limited to 'include/mpi.h')
-rw-r--r-- | include/mpi.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/include/mpi.h b/include/mpi.h index fd93f3075..4e25ab201 100644 --- a/include/mpi.h +++ b/include/mpi.h @@ -45,6 +45,18 @@ int mpi_debug_mode; #define BYTES_PER_MPI_LIMB2 8 typedef unsigned long int mpi_limb_t; typedef signed long int mpi_limb_signed_t; +#elif defined(__hppa__) + #define BITS_PER_MPI_LIMB 32 + #define BYTES_PER_MPI_LIMB 4 + #define BYTES_PER_MPI_LIMB2 8 + typedef unsigned long int mpi_limb_t; + typedef signed long int mpi_limb_signed_t; +#elif defined(__alpha__) + #define BITS_PER_MPI_LIMB 64 + #define BYTES_PER_MPI_LIMB 8 + #define BYTES_PER_MPI_LIMB2 16 + typedef unsigned long int mpi_limb_t; + typedef signed long int mpi_limb_signed_t; #else #error add definions for this machine here #endif |