src/cpu/ppc/vm/vm_version_ppc.cpp

changeset 9730
42118db355f5
parent 9713
c4567d28f31f
child 9756
2be326848943
child 9788
44ef77ad417c
     1.1 --- a/src/cpu/ppc/vm/vm_version_ppc.cpp	Tue Jan 29 08:28:24 2019 -0500
     1.2 +++ b/src/cpu/ppc/vm/vm_version_ppc.cpp	Sun Aug 11 19:11:08 2019 -0400
     1.3 @@ -174,7 +174,6 @@
     1.4    }
     1.5  
     1.6    // The AES intrinsic stubs require AES instruction support.
     1.7 -#if defined(VM_LITTLE_ENDIAN)
     1.8    if (has_vcipher()) {
     1.9      if (FLAG_IS_DEFAULT(UseAES)) {
    1.10        UseAES = true;
    1.11 @@ -195,18 +194,6 @@
    1.12      FLAG_SET_DEFAULT(UseAESIntrinsics, false);
    1.13    }
    1.14  
    1.15 -#else
    1.16 -  if (UseAES) {
    1.17 -    warning("AES instructions are not available on this CPU");
    1.18 -    FLAG_SET_DEFAULT(UseAES, false);
    1.19 -  }
    1.20 -  if (UseAESIntrinsics) {
    1.21 -    if (!FLAG_IS_DEFAULT(UseAESIntrinsics))
    1.22 -      warning("AES intrinsics are not available on this CPU");
    1.23 -    FLAG_SET_DEFAULT(UseAESIntrinsics, false);
    1.24 -  }
    1.25 -#endif
    1.26 -
    1.27    if (has_vshasig()) {
    1.28      if (FLAG_IS_DEFAULT(UseSHA)) {
    1.29        UseSHA = true;

mercurial