2005-03-29 Paul Brook <paul@codesourcery.com>
[official-gcc.git] / gcc / config / arm / gentune.sh
blob40c054110527377ee9aadf1140c29349033cd3c6
1 #!/bin/sh
2 # Generate arm-tune.md, a file containing the tune attribute from the list of
3 # CPUs in arm-cores.def
5 echo ";; -*- buffer-read-only: t -*-"
6 echo ";; Generated automatically by gentune.sh from arm-cores.def"
8 allcores=`awk -F'[(, ]+' '/^ARM_CORE/ { cores = cores$3"," } END { print cores } ' $1`
10 echo "(define_attr \"tune\""
11 echo " \"$allcores\"" | sed -e 's/,"$/"/'
12 echo " (const (symbol_ref \"arm_tune\")))"