* lib/target-supports.exp (check_profiling_available): Disable
profiling with -fprofile-generate for target avr.
From-SVN: r175922
+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
# 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]
}