diff options
author | Jeff Law <jlaw@ventanamicro.com> | 2024-11-01 20:31:11 -0600 |
---|---|---|
committer | Jeff Law <jlaw@ventanamicro.com> | 2024-11-01 20:31:11 -0600 |
commit | 6a2e8913df605e62f20833a6e688ea1950147edc (patch) | |
tree | 9fd715c7b6066d7244a5fe5289f0bbb687e297c3 | |
parent | 4a5a63596dd82d20fd1cc11a69ec1e4729225645 (diff) | |
download | gcc-6a2e8913df605e62f20833a6e688ea1950147edc.zip gcc-6a2e8913df605e62f20833a6e688ea1950147edc.tar.gz gcc-6a2e8913df605e62f20833a6e688ea1950147edc.tar.bz2 |
[committed] ft32 doesn't support trampolines.
The ft32 has never supported trampolines, but the target supports bits weren't
appropriately updated.
Fixed thusly.
gcc/testsuite
* lib/target-supports.exp (check_effective_target_trampolines): ft32
does not support trampolines.
-rw-r--r-- | gcc/testsuite/lib/target-supports.exp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/testsuite/lib/target-supports.exp b/gcc/testsuite/lib/target-supports.exp index c45cc50..75703dd 100644 --- a/gcc/testsuite/lib/target-supports.exp +++ b/gcc/testsuite/lib/target-supports.exp @@ -639,6 +639,7 @@ proc check_effective_target_trampolines { } { if { [istarget avr-*-*] || [istarget msp430-*-*] || [istarget nvptx-*-*] + || [istarget ft32-*-*] || [istarget pru-*-*] || [istarget bpf-*-*] } { return 0; |