aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Mitchell <mark@codesourcery.com>2004-08-19 22:29:11 +0000
committerMark Mitchell <mmitchel@gcc.gnu.org>2004-08-19 22:29:11 +0000
commit2e32707b477de79fd123f28a3ee53a266b8ad9be (patch)
treeeec413193d163c9af95fd57514e8467c6e9972c4
parentd55ab31d105b43b177688b16339cc5e881c28d72 (diff)
downloadgcc-2e32707b477de79fd123f28a3ee53a266b8ad9be.zip
gcc-2e32707b477de79fd123f28a3ee53a266b8ad9be.tar.gz
gcc-2e32707b477de79fd123f28a3ee53a266b8ad9be.tar.bz2
target-supports.exp (check_profiling_available): Return false for arm*-*-symbianelf* and arm*-*-eabi*.
* lib/target-supports.exp (check_profiling_available): Return false for arm*-*-symbianelf* and arm*-*-eabi*. From-SVN: r86286
-rw-r--r--gcc/testsuite/ChangeLog3
-rw-r--r--gcc/testsuite/lib/target-supports.exp2
2 files changed, 5 insertions, 0 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index 7e639c1..e35888e 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -1,5 +1,8 @@
2004-08-19 Mark Mitchell <mark@codesourcery.com>
+ * lib/target-supports.exp (check_profiling_available): Return
+ false for arm*-*-symbianelf* and arm*-*-eabi*.
+
PR c++/15890
* g++.dg/template/delete1.C: New test.
diff --git a/gcc/testsuite/lib/target-supports.exp b/gcc/testsuite/lib/target-supports.exp
index e23a8ec..1ffdebb 100644
--- a/gcc/testsuite/lib/target-supports.exp
+++ b/gcc/testsuite/lib/target-supports.exp
@@ -200,7 +200,9 @@ proc check_profiling_available { test_what } {
# Some targets don't have any implementation of __bb_init_func or are
# missing other needed machinery.
if { [istarget mmix-*-*]
+ || [istarget arm*-*-eabi*]
|| [istarget arm*-*-elf]
+ || [istarget arm*-*-symbianelf*]
|| [istarget powerpc-*-eabi*]
|| [istarget strongarm*-*-elf]
|| [istarget xscale*-*-elf]