--- old/src/cpu/ppc/vm/vm_version_ppc.cpp 2019-07-16 17:47:23.253740779 +0900 +++ new/src/cpu/ppc/vm/vm_version_ppc.cpp 2019-07-16 17:47:23.197739603 +0900 @@ -174,7 +174,6 @@ } // The AES intrinsic stubs require AES instruction support. -#if defined(VM_LITTLE_ENDIAN) if (has_vcipher()) { if (FLAG_IS_DEFAULT(UseAES)) { UseAES = true; @@ -195,18 +194,6 @@ FLAG_SET_DEFAULT(UseAESIntrinsics, false); } -#else - if (UseAES) { - warning("AES instructions are not available on this CPU"); - FLAG_SET_DEFAULT(UseAES, false); - } - if (UseAESIntrinsics) { - if (!FLAG_IS_DEFAULT(UseAESIntrinsics)) - warning("AES intrinsics are not available on this CPU"); - FLAG_SET_DEFAULT(UseAESIntrinsics, false); - } -#endif - if (has_vshasig()) { if (FLAG_IS_DEFAULT(UseSHA)) { UseSHA = true;