diff options
author | Richard Sandiford <rsandifo@redhat.com> | 2004-04-15 09:50:46 +0000 |
---|---|---|
committer | Richard Sandiford <rsandifo@gcc.gnu.org> | 2004-04-15 09:50:46 +0000 |
commit | a49877d87f5aec34295e82b0fffaee086457f1c3 (patch) | |
tree | 85df89148cd4fbc3aad7f451f36ca778a95023d7 /gcc | |
parent | d7ed521ba9f35bdd450f1cc31c76c6ece8063634 (diff) | |
download | gcc-a49877d87f5aec34295e82b0fffaee086457f1c3.zip gcc-a49877d87f5aec34295e82b0fffaee086457f1c3.tar.gz gcc-a49877d87f5aec34295e82b0fffaee086457f1c3.tar.bz2 |
target-supports.exp (check_profiling_available): Assume profiling isn't available for mips*-*-elf targets.
* lib/target-supports.exp (check_profiling_available): Assume profiling
isn't available for mips*-*-elf targets.
From-SVN: r80715
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/testsuite/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/testsuite/lib/target-supports.exp | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index b5be953..038faf8 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2004-04-15 Richard Sandiford <rsandifo@redhat.com> + + * lib/target-supports.exp (check_profiling_available): Assume profiling + isn't available for mips*-*-elf targets. + 2004-04-14 Uros Bizjak <uros@kss-loka.si> * gcc.dg/builtins-38.c: New test. diff --git a/gcc/testsuite/lib/target-supports.exp b/gcc/testsuite/lib/target-supports.exp index 7dfa893..1b4ac29 100644 --- a/gcc/testsuite/lib/target-supports.exp +++ b/gcc/testsuite/lib/target-supports.exp @@ -202,6 +202,7 @@ proc check_profiling_available { test_what } { || [istarget xscale*-*-elf] || [istarget cris-*-*] || [istarget h8300-*-*] + || [istarget mips*-*-elf] || [istarget *-*-windiss] } { set profiling_available_saved 0 } else { |