Use __GNUC__ for POWER8 AES availability test

pull/739/head
Jeffrey Walton 2018-11-11 08:00:45 -05:00
parent 213569a46d
commit 8e83d7a8ff
No known key found for this signature in database
GPG Key ID: B36AB348921B1838
1 changed files with 1 additions and 1 deletions

View File

@ -8,7 +8,7 @@ int main(int argc, char* argv[])
x=__vcipherlast(x,x);
x=__vncipher(x,x);
x=__vncipherlast(x,x);
#elif defined(CRYPTOPP_GCC_VERSION)
#elif defined(__GNUC__)
__vector unsigned long long x;
x=__builtin_crypto_vcipher(x,x);
x=__builtin_crypto_vcipherlast(x,x);