Commit 294f1ce3 by Steve Ellcey Committed by Steve Ellcey

target-supports.exp (is-effective-target): Add cxa_atexit.

	* lib/target-supports.exp (is-effective-target): Add cxa_atexit.
	(is-effective-target-keyword): Ditto.

From-SVN: r114320
parent 47fe00d8
2006-06-01 Steve Ellcey <sje@cup.hp.com>
* lib/target-supports.exp (is-effective-target): Add cxa_atexit.
(is-effective-target-keyword): Ditto.
2006-06-01 Thomas Koenig <Thomas.Koenig@online.de> 2006-06-01 Thomas Koenig <Thomas.Koenig@online.de>
PR fortran/27715 PR fortran/27715
...@@ -1749,6 +1749,7 @@ proc is-effective-target { arg } { ...@@ -1749,6 +1749,7 @@ proc is-effective-target { arg } {
"vmx_hw" { set selected [check_vmx_hw_available] } "vmx_hw" { set selected [check_vmx_hw_available] }
"named_sections" { set selected [check_named_sections_available] } "named_sections" { set selected [check_named_sections_available] }
"gc_sections" { set selected [check_gc_sections_available] } "gc_sections" { set selected [check_gc_sections_available] }
"cxa_atexit" { set selected [check_cxa_atexit_available] }
default { error "unknown effective target keyword `$arg'" } default { error "unknown effective target keyword `$arg'" }
} }
} }
...@@ -1767,6 +1768,7 @@ proc is-effective-target-keyword { arg } { ...@@ -1767,6 +1768,7 @@ proc is-effective-target-keyword { arg } {
"vmx_hw" { return 1 } "vmx_hw" { return 1 }
"named_sections" { return 1 } "named_sections" { return 1 }
"gc_sections" { return 1 } "gc_sections" { return 1 }
"cxa_atexit" { return 1 }
default { return 0 } default { return 0 }
} }
} }
......
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