https://gcc.gnu.org/bugzilla/show_bug.cgi?id=123936
Andrew Pinski <pinskia at gcc dot gnu.org> changed:
What |Removed |Added
----------------------------------------------------------------------------
Assignee|unassigned at gcc dot gnu.org |pinskia at gcc dot
gnu.org
Ever confirmed|0 |1
Status|UNCONFIRMED |ASSIGNED
Last reconfirmed| |2026-02-03
--- Comment #2 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
(In reply to Richard Biener from comment #1)
> sve.exp should demote dg-run to dg-compile if not?
The problem is how to detect if the target has sve or not. For Linux (and
targets which has signals) it is easy, just execute a beign SVE instruction and
if you hit a SIGILL then exit with 0.
But for bare metal aarch64 testing it is not so obvious how to do it.
I guess you could just limit this testcase to targets which signals and handle
it that way. I will do that.