From 3c1435f53d4ccc8cac63ff0c87b49a90a4c8b104 Mon Sep 17 00:00:00 2001 From: Christophe Lyon Date: Wed, 8 Jun 2016 14:29:25 +0200 Subject: [PATCH] gcc/testsuite/ Backport from trunk r236769. 2016-05-26 Thomas Preud'homme * gcc.dg/plugin/plugin.exp: skip tail call tests for Thumb-1. Change-Id: I14c235751e0956cb7ffba2a4d91b1887296e9f66 --- gcc/testsuite/gcc.dg/plugin/plugin.exp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/gcc/testsuite/gcc.dg/plugin/plugin.exp b/gcc/testsuite/gcc.dg/plugin/plugin.exp index fd1e98e..0547a8d 100644 --- a/gcc/testsuite/gcc.dg/plugin/plugin.exp +++ b/gcc/testsuite/gcc.dg/plugin/plugin.exp @@ -87,6 +87,12 @@ foreach plugin_test $plugin_test_list { if ![runtest_file_p $runtests $plugin_src] then { continue } + # Skip tail call tests on targets that do not have sibcall_epilogue. + if {[regexp ".*must_tail_call_plugin.c" $plugin_src] + && [istarget arm*-*-*] + && [check_effective_target_arm_thumb1]} then { + continue + } set plugin_input_tests [lreplace $plugin_test 0 0] plugin-test-execute $plugin_src $plugin_input_tests } -- 2.7.4