qemu/target/s390x/cpu_features_def.h
<<
>>
Prefs
   1/*
   2 * CPU features/facilities for s390
   3 *
   4 * Copyright IBM Corp. 2016, 2018
   5 * Copyright Red Hat, Inc. 2019
   6 *
   7 * Author(s): Michael Mueller <mimu@linux.vnet.ibm.com>
   8 *            David Hildenbrand <david@redhat.com>
   9 *
  10 * This work is licensed under the terms of the GNU GPL, version 2 or (at
  11 * your option) any later version. See the COPYING file in the top-level
  12 * directory.
  13 */
  14
  15#ifndef TARGET_S390X_CPU_FEATURES_DEF_H
  16#define TARGET_S390X_CPU_FEATURES_DEF_H
  17
  18#define DEF_FEAT(_FEAT, ...) S390_FEAT_##_FEAT,
  19typedef enum {
  20    #include "cpu_features_def.h.inc"
  21    S390_FEAT_MAX,
  22} S390Feat;
  23#undef DEF_FEAT
  24
  25#endif /* TARGET_S390X_CPU_FEATURES_DEF_H */
  26