target-supports.exp (check_profiling_available): Disable profiling with -fprofile-generate for target avr.

* lib/target-supports.exp (check_profiling_available): Disable
	profiling with -fprofile-generate for target avr.

From-SVN: r175922
This commit is contained in:
Georg-Johann Lay 2011-07-06 16:05:18 +00:00 committed by Georg-Johann Lay
parent d0edd768de
commit c8ecdaba87
2 changed files with 10 additions and 0 deletions

View file

@ -1,3 +1,8 @@
2011-07-06 Georg-Johann Lay <avr@gjlay.de>
* lib/target-supports.exp (check_profiling_available): Disable
profiling with -fprofile-generate for target avr.
2011-07-06 Richard Guenther <rguenther@suse.de>
PR tree-optimization/49645

View file

@ -497,6 +497,11 @@ proc check_profiling_available { test_what } {
# Tree profiling requires TLS runtime support.
if { $test_what == "-fprofile-generate" } {
# AVR does not support profile generation because
# it does not implement needed support functions.
if { [istarget avr-*-*] } {
return 0
}
return [check_effective_target_tls_runtime]
}