[committed] ft32 doesn't support trampolines.

Message ID d017f3f4-bd8d-40af-b03e-73a978f5d93f@gmail.com
State Committed
Commit 6a2e8913df605e62f20833a6e688ea1950147edc
Headers
Series [committed] ft32 doesn't support trampolines. |

Checks

Context Check Description
linaro-tcwg-bot/tcwg_gcc_build--master-aarch64 fail Patch failed to apply
linaro-tcwg-bot/tcwg_gcc_build--master-arm fail Patch failed to apply

Commit Message

Jeff Law Nov. 2, 2024, 2:34 a.m. UTC
  The ft32 has never supported trampolines, but the target supports bits 
in the dejagnu framework weren't appropriately updated.

Fixed thusly.

Jeff
commit 6a2e8913df605e62f20833a6e688ea1950147edc
Author: Jeff Law <jlaw@ventanamicro.com>
Date:   Fri Nov 1 20:31:11 2024 -0600

    [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.
  

Patch

diff --git a/gcc/testsuite/lib/target-supports.exp b/gcc/testsuite/lib/target-supports.exp
index c45cc50e0ad..75703ddca60 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;