Commit dd586f98 by Georg-Johann Lay Committed by Georg-Johann Lay

target-supports.exp (check_effective_target_tiny): Return 1 for AVR_TINY.

gcc/testsuite/
	* lib/target-supports.exp (check_effective_target_tiny) [avr]:
	Return 1 for AVR_TINY.

From-SVN: r242666
parent e51482c9
2016-11-21 Georg-Johann Lay <avr@gjlay.de>
* lib/target-supports.exp (check_effective_target_tiny) [avr]:
Return 1 for AVR_TINY.
2016-11-21 Segher Boessenkool <segher@kernel.crashing.org>
PR rtl-optimization/71785
......
......@@ -7864,7 +7864,7 @@ proc check_effective_target_fenv_exceptions {} {
proc check_effective_target_tiny {} {
global et_target_tiny_saved
if [info exists et_target_tine_saved] {
if [info exists et_target_tiny_saved] {
verbose "check_effective_target_tiny: using cached result" 2
} else {
set et_target_tiny_saved 0
......@@ -7872,6 +7872,10 @@ proc check_effective_target_tiny {} {
&& [check_effective_target_aarch64_tiny] } {
set et_target_tiny_saved 1
}
if { [istarget avr-*-*]
&& [check_effective_target_avr_tiny] } {
set et_target_tiny_saved 1
}
}
return $et_target_tiny_saved
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment