s390_features.c 311 B

1234567891011121314
  1. #include "zbuild.h"
  2. #include "s390_features.h"
  3. #ifdef HAVE_SYS_AUXV_H
  4. # include <sys/auxv.h>
  5. #endif
  6. #ifndef HWCAP_S390_VXRS
  7. #define HWCAP_S390_VXRS HWCAP_S390_VX
  8. #endif
  9. void Z_INTERNAL s390_check_features(struct s390_cpu_features *features) {
  10. features->has_vx = getauxval(AT_HWCAP) & HWCAP_S390_VXRS;
  11. }