Define arm_arch_core_flags in a single file

2016-12-12  Thomas Preud'homme  <thomas.preudhomme@arm.com>

    gcc/
    * config/arm/arm-opts.h: Move struct arm_arch_core_flag and
    arm_arch_core_flags to ...
    * common/config/arm/arm-common.c: There.

From-SVN: r243541
This commit is contained in:
Thomas Preud'homme 2016-12-12 09:39:51 +00:00 committed by Thomas Preud'homme
parent 5c2ee2f1fe
commit 6e4e50f5cb
3 changed files with 26 additions and 20 deletions

View File

@ -1,3 +1,9 @@
2016-12-12 Thomas Preud'homme <thomas.preudhomme@arm.com>
* config/arm/arm-opts.h: Move struct arm_arch_core_flag and
arm_arch_core_flags to ...
* common/config/arm/arm-common.c: There.
2016-12-12 Eric Botcazou <ebotcazou@adacore.com>
* config/sparc/constraints.md (T): Use special memory constraint.

View File

@ -98,6 +98,26 @@ arm_rewrite_mcpu (int argc, const char **argv)
return arm_rewrite_selected_cpu (argv[argc - 1]);
}
struct arm_arch_core_flag
{
const char *const name;
const arm_feature_set flags;
};
static const struct arm_arch_core_flag arm_arch_core_flags[] =
{
#undef ARM_CORE
#define ARM_CORE(NAME, X, IDENT, ARCH, FLAGS, COSTS) \
{NAME, FLAGS},
#include "config/arm/arm-cores.def"
#undef ARM_CORE
#undef ARM_ARCH
#define ARM_ARCH(NAME, CORE, ARCH, FLAGS) \
{NAME, FLAGS},
#include "config/arm/arm-arches.def"
#undef ARM_ARCH
};
/* Called by the driver to check whether the target denoted by current
command line options is a Thumb-only target. ARGV is an array of
-march and -mcpu values (ie. it contains the rhs after the equal

View File

@ -79,24 +79,4 @@ enum arm_tls_type {
TLS_GNU,
TLS_GNU2
};
struct arm_arch_core_flag
{
const char *const name;
const arm_feature_set flags;
};
static const struct arm_arch_core_flag arm_arch_core_flags[] =
{
#undef ARM_CORE
#define ARM_CORE(NAME, X, IDENT, ARCH, FLAGS, COSTS) \
{NAME, FLAGS},
#include "arm-cores.def"
#undef ARM_CORE
#undef ARM_ARCH
#define ARM_ARCH(NAME, CORE, ARCH, FLAGS) \
{NAME, FLAGS},
#include "arm-arches.def"
#undef ARM_ARCH
};
#endif