Merge topic 'Fortran-pgi-intel-arch'

eb8cb2c6 Fortran: Detect pointer size on Intel archs with PGI (#14870)
This commit is contained in:
Brad King 2014-04-11 09:13:14 -04:00 committed by CMake Topic Stage
commit 893843ce21
1 changed files with 4 additions and 0 deletions

View File

@ -10,11 +10,15 @@
PRINT *, 'INFO:sizeof_dptr[8]'
#elif defined(_M_AMD64)
PRINT *, 'INFO:sizeof_dptr[8]'
#elif defined(__x86_64__)
PRINT *, 'INFO:sizeof_dptr[8]'
#elif defined(_ILP32)
PRINT *, 'INFO:sizeof_dptr[4]'
#elif defined(_M_IX86)
PRINT *, 'INFO:sizeof_dptr[4]'
#elif defined(__i386__)
PRINT *, 'INFO:sizeof_dptr[4]'
#elif defined(__SIZEOF_POINTER__) && __SIZEOF_POINTER__ == 8
PRINT *, 'INFO:sizeof_dptr[8]'