diff options
author | jsm28 <jsm28@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-10-30 14:03:05 +0000 |
---|---|---|
committer | jsm28 <jsm28@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-10-30 14:03:05 +0000 |
commit | 59f50e359a70d49f7ba31d74812934c92b483a24 (patch) | |
tree | ca3b463b28274388837a28d7d7504e11f56d9437 /libstdc++-v3 | |
parent | 78f87101497179cc89dd62c9f3c9d37bccd6f2ca (diff) | |
download | gcc-59f50e359a70d49f7ba31d74812934c92b483a24.tar.gz |
libstdc++-v3:
* testsuite/config/default.exp (${tool}_target_compile): Use
v3_target_compile.
gcc/testsuite:
* lib/target-supports.exp (check_function_available): Declare
function before calling.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@118182 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libstdc++-v3')
-rw-r--r-- | libstdc++-v3/ChangeLog | 5 | ||||
-rw-r--r-- | libstdc++-v3/testsuite/config/default.exp | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index ce61055d8b7..9274108fdcc 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,8 @@ +2006-10-30 Joseph Myers <joseph@codesourcery.com> + + * testsuite/config/default.exp (${tool}_target_compile): Use + v3_target_compile. + 2006-10-29 Paolo Carlini <pcarlini@suse.de> * src/debug.cc (_Safe_sequence_base::_M_revalidate_singular): Fix diff --git a/libstdc++-v3/testsuite/config/default.exp b/libstdc++-v3/testsuite/config/default.exp index 1c643f66f9a..c08f6dd61ef 100644 --- a/libstdc++-v3/testsuite/config/default.exp +++ b/libstdc++-v3/testsuite/config/default.exp @@ -28,6 +28,6 @@ load_lib "standard.exp" # target-supports.exp uses this proc ${tool}_target_compile { srcfile destfile compile_type options } { - target_compile $srcfile $destfile $compile_type $options + v3_target_compile $srcfile $destfile $compile_type $options } |