diff options
| author | oldham <oldham@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-01-03 18:22:23 +0000 |
|---|---|---|
| committer | oldham <oldham@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-01-03 18:22:23 +0000 |
| commit | 65a5d44b7e7716ad4c0683e301477cbf0962d703 (patch) | |
| tree | 09de5bf33438a15252260f14a8ded379228b8ca6 /gcc | |
| parent | e12c31b5185931e0b35d2d35261fcf2fcf5698ba (diff) | |
| download | ppe42-gcc-65a5d44b7e7716ad4c0683e301477cbf0962d703.tar.gz ppe42-gcc-65a5d44b7e7716ad4c0683e301477cbf0962d703.zip | |
2001-01-03 Jeffrey Oldham <oldham@codesourcery.com>
* lib/target-supports.exp (check_alias_available): Modified to
indicate aliases not supported if only weak aliases are supported.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@38667 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc')
| -rw-r--r-- | gcc/testsuite/ChangeLog | 5 | ||||
| -rw-r--r-- | gcc/testsuite/lib/target-supports.exp | 9 |
2 files changed, 12 insertions, 2 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index f29c3902974..6bf11589d66 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2001-01-03 Jeffrey Oldham <oldham@codesourcery.com> + + * lib/target-supports.exp (check_alias_available): Modified to + indicate aliases not supported if only weak aliases are supported. + 2001-01-03 Kaveh R. Ghazi <ghazi@caip.rutgers.edu> * gcc.c-torture/execute/string-opt-8.c: Add more testcases. diff --git a/gcc/testsuite/lib/target-supports.exp b/gcc/testsuite/lib/target-supports.exp index 35f1188035a..054fdb8f770 100644 --- a/gcc/testsuite/lib/target-supports.exp +++ b/gcc/testsuite/lib/target-supports.exp @@ -1,4 +1,4 @@ -# Copyright (C) 1999 Free Software Foundation, Inc. +# Copyright (C) 1999, 2001 Free Software Foundation, Inc. # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -85,7 +85,12 @@ proc check_alias_available { testfile } { set alias_available_saved no } } else { - set alias_available_saved dontknow + if [regexp "only weak aliases are supported" $lines] { + verbose "check_alias_available target supports only weak aliases" 2 + set alias_available_saved no + } else { + set alias_available_saved dontknow + } } } |

