Skip various cmp-mem-const tests on lp64 hppa*-*-*
[official-gcc.git] / gcc / config / nvptx / gen-h.sh
blobea75e127cdeb26ff07265f5601f7423b4a3c13ce
1 #!/bin/sh
3 # Copyright (C) 2022-2024 Free Software Foundation, Inc.
5 # This file is part of GCC.
7 # GCC is free software; you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 3, or (at your option)
10 # any later version.
12 # GCC is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with GCC; see the file COPYING3. If not see
19 # <http://www.gnu.org/licenses/>.
21 nvptx_sm_def="$1/nvptx-sm.def"
22 gen_copyright_sh="$1/gen-copyright.sh"
24 sms=$(grep ^NVPTX_SM $nvptx_sm_def | sed 's/.*(//;s/,.*//')
26 cat <<EOF
27 /* -*- buffer-read-only: t -*-
28 Generated automatically by gen-h.sh from nvptx-sm.def.
30 EOF
32 # Separator.
33 echo
35 . $gen_copyright_sh c
37 # Separator.
38 echo
40 for sm in $sms; do
41 cat <<EOF
42 #define TARGET_SM$sm (ptx_isa_option >= PTX_ISA_SM$sm)
43 EOF
44 done