diff --git a/gcc/lra-constraints.cc b/gcc/lra-constraints.cc index 9cee17479ba..fdff9e0720a 100644 --- a/gcc/lra-constraints.cc +++ b/gcc/lra-constraints.cc @@ -2498,9 +2498,15 @@ process_alt_operands (int only_alternative) if (mode == BLKmode) break; this_alternative = reg_class_subunion[this_alternative][cl]; + if (hard_reg_set_subset_p (this_alternative_set, + reg_class_contents[cl])) + this_alternative_exclude_start_hard_regs + = ira_exclude_class_mode_regs[cl][mode]; + else if (!hard_reg_set_subset_p (reg_class_contents[cl], + this_alternative_set)) + this_alternative_exclude_start_hard_regs + |= ira_exclude_class_mode_regs[cl][mode]; this_alternative_set |= reg_class_contents[cl]; - this_alternative_exclude_start_hard_regs - |= ira_exclude_class_mode_regs[cl][mode]; if (costly_p) { this_costly_alternative diff --git a/gcc/testsuite/gcc.target/v850/pr104400.c b/gcc/testsuite/gcc.target/v850/pr104400.c new file mode 100644 index 00000000000..5d78a77345c --- /dev/null +++ b/gcc/testsuite/gcc.target/v850/pr104400.c @@ -0,0 +1,8 @@ +/* { dg-do compile } */ +/* { dg-options "-O2 -mv850e3v5" } */ + +double frob (double r) +{ + r = -r; + return r; +} diff --git a/gcc/testsuite/gcc.target/v850/v850.exp b/gcc/testsuite/gcc.target/v850/v850.exp new file mode 100644 index 00000000000..4e8c745a0b8 --- /dev/null +++ b/gcc/testsuite/gcc.target/v850/v850.exp @@ -0,0 +1,41 @@ +# Copyright (C) 2022 Free Software Foundation, Inc. + +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with GCC; see the file COPYING3. If not see +# . + +# GCC testsuite that uses the `dg.exp' driver. + +# Exit immediately if this isn't an v850 target. +if ![istarget v850*-*-*] then { + return +} + +# Load support procs. +load_lib gcc-dg.exp + +# If a testcase doesn't have special options, use these. +global DEFAULT_CFLAGS +if ![info exists DEFAULT_CFLAGS] then { + set DEFAULT_CFLAGS " -ansi -pedantic-errors" +} + +# Initialize `dg'. +dg-init + +# Main loop. +dg-runtest [lsort [glob -nocomplain $srcdir/$subdir/*.\[cS\]]] \ + "" $DEFAULT_CFLAGS + +# All done. +dg-finish