]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/testsuite/gcc.target/cris/cris.exp
Update copyright years.
[thirdparty/gcc.git] / gcc / testsuite / gcc.target / cris / cris.exp
CommitLineData
7adcbafe 1# Copyright (C) 2005-2022 Free Software Foundation, Inc.
fa7682c7
HPN
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
cd976c16 5# the Free Software Foundation; either version 3 of the License, or
fa7682c7
HPN
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
cd976c16
NC
14# along with GCC; see the file COPYING3. If not see
15# <http://www.gnu.org/licenses/>.
fa7682c7
HPN
16
17# GCC testsuite that uses the `gcc-dg.exp' driver, just a single option, no
18# looping over tests.
19
20# Exit immediately if this isn't a CRIS target.
a012982f 21if { ![istarget cris-*-*] } then {
fa7682c7
HPN
22 return
23}
24
25# Load support procs.
26load_lib gcc-dg.exp
27
dcdd0aa8
HPN
28# For the time being, provide a means to tell whether the target is "cc0".
29# Some targets may split cbranch and cstore late, but for a cc0-target,
30# all the fun happens at "final" time, so this should be a safe time for
31# a scan.
32proc check_effective_target_cc0 { } {
33 return [check_no_messages_and_pattern cc0 "\\(cc0\\)" rtl-final {
34 extern void g (void);
35 void f (int *p, int *q) { *q = *p == 42; if (*p == 7) g (); }
36 }]
37}
38
fa7682c7
HPN
39# If a testcase doesn't have special options, use these.
40global DEFAULT_CFLAGS
41if ![info exists DEFAULT_CFLAGS] then {
42 set DEFAULT_CFLAGS " -ansi -pedantic-errors"
43}
44
45# Initialize `dg'.
46dg-init
47
48# Main loop.
49dg-runtest [lsort [glob -nocomplain $srcdir/$subdir/*.\[cS\]]] "" $DEFAULT_CFLAGS
50
51# All done.
52dg-finish