diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2024-01-15 07:31:29 -0800 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2024-01-15 07:39:56 -0800 |
commit | b7d511e37ce1134b8c89487e49279e438b8333be (patch) | |
tree | 702805719fb87cceb9945cd9b26ba2d327b933e5 /gas | |
parent | af1ff6c0c946382366d57d38a38a58361a7666d4 (diff) | |
download | gdb-b7d511e37ce1134b8c89487e49279e438b8333be.zip gdb-b7d511e37ce1134b8c89487e49279e438b8333be.tar.gz gdb-b7d511e37ce1134b8c89487e49279e438b8333be.tar.bz2 |
x86-64: Skip SCFI tests for x32 targets
Since SCFI isn't supported on x32:
Fatal error: SCFI is not supported for this ABI
skip SCFI tests for x32 targets.
PR gas/31245
* testsuite/gas/scfi/x86_64/scfi-x86-64.exp: Skip for x32
targets.
(cherry picked from commit 7bd344dd0e0469a93cbbf50f797155278cb76a0b)
Diffstat (limited to 'gas')
-rw-r--r-- | gas/testsuite/gas/scfi/x86_64/scfi-x86-64.exp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gas/testsuite/gas/scfi/x86_64/scfi-x86-64.exp b/gas/testsuite/gas/scfi/x86_64/scfi-x86-64.exp index 460d5fd..2b29180 100644 --- a/gas/testsuite/gas/scfi/x86_64/scfi-x86-64.exp +++ b/gas/testsuite/gas/scfi/x86_64/scfi-x86-64.exp @@ -19,7 +19,7 @@ if { ![is_elf_format] } then { } # common tests -if { ([istarget "x86_64-*-*"]) } then { +if { ([istarget "x86_64-*-*"] && ![istarget "x86_64-*-linux*-gnux32"]) } then { global ASFLAGS set old_ASFLAGS "$ASFLAGS" |