]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/testsuite/gcc.target/arm/pure-code/pure-code.exp
Update copyright years.
[thirdparty/gcc.git] / gcc / testsuite / gcc.target / arm / pure-code / pure-code.exp
1 # Copyright (C) 1997-2024 Free Software Foundation, Inc.
2
3 # This program is free software; you can redistribute it and/or modify
4 # it under the terms of the GNU General Public License as published by
5 # the Free Software Foundation; either version 3 of the License, or
6 # (at your option) any later version.
7 #
8 # This program is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 # GNU General Public License for more details.
12 #
13 # You should have received a copy of the GNU General Public License
14 # along with GCC; see the file COPYING3. If not see
15 # <http://www.gnu.org/licenses/>.
16
17 # GCC testsuite for ARM's -mpure-code option, using the `dg.exp' driver.
18
19 # Exit immediately if this is an ARM FDPIC target (it uses PIC code,
20 # which is incompatible with -mpure-code).
21 if [istarget arm*-*-uclinuxfdpiceabi] then {
22 return
23 }
24
25 # Load support procs.
26 load_lib gcc-dg.exp
27
28 # If a testcase doesn't have special options, use these.
29 global DEFAULT_CFLAGS
30 if ![info exists DEFAULT_CFLAGS] then {
31 set DEFAULT_CFLAGS " -ansi -pedantic-errors"
32 }
33
34 # The -mpure-code option is only available for M-profile targets.
35 if {[check_effective_target_arm_cortex_m]} then {
36 # Initialize `dg'.
37 dg-init
38 torture-init
39
40 set saved-dg-do-what-default ${dg-do-what-default}
41 set dg-do-what-default "assemble"
42
43 set saved-lto_torture_options ${LTO_TORTURE_OPTIONS}
44
45 # Add -ffat-lto-objects option to all LTO options such that we can do assembly
46 # scans.
47 proc add_fat_objects { list } {
48 set res {}
49 foreach el $list {set res [lappend res [concat $el " -ffat-lto-objects"]]}
50 return $res
51 };
52 set LTO_TORTURE_OPTIONS [add_fat_objects ${LTO_TORTURE_OPTIONS}]
53
54 gcc-dg-runtest [lsort [glob $srcdir/$subdir/*.c]] \
55 "" $DEFAULT_CFLAGS
56
57 # Restore global values
58 set dg-do-what-default ${saved-dg-do-what-default}
59 set LTO_TORTURE_OPTIONS ${saved-lto_torture_options}
60
61 # All done.
62 torture-finish
63 dg-finish
64 }