Update comments

pull/748/head
Jeffrey Walton 2018-11-19 15:23:29 -05:00
parent 87565dce75
commit 531ab7e8c5
No known key found for this signature in database
GPG Key ID: B36AB348921B1838
1 changed files with 3 additions and 2 deletions

View File

@ -32,8 +32,9 @@
# undef bool # undef bool
#endif #endif
// IBM XLC on AIX does not define __CRYPTO__ like it should. More LLVM goodness. // IBM XLC on AIX does not define __CRYPTO__ like it should with -qarch=pwr8.
#if defined(_AIX) && defined(__xlC__) // Crypto is available in XLC 13.1 and above. More LLVM front-end goodness.
#if defined(_AIX) && defined(_ARCH_PWR8) && (__xlC__ >= 0xd01)
# undef __CRYPTO__ # undef __CRYPTO__
# define __CRYPTO__ 1 # define __CRYPTO__ 1
#endif #endif