diff options
author | David Billinghurst <David.Billinghurst@riotinto.com> | 2002-01-03 14:25:14 +0000 |
---|---|---|
committer | David Billinghurst <billingd@gcc.gnu.org> | 2002-01-03 14:25:14 +0000 |
commit | dd37368c6d2f0e2b4c4c774820c113f605e8086d (patch) | |
tree | a2f816fe71de5097fe007b88a89781b271154d9d | |
parent | 5e55c6a2421a0846747002e3e0bda921d9081664 (diff) | |
download | gcc-dd37368c6d2f0e2b4c4c774820c113f605e8086d.zip gcc-dd37368c6d2f0e2b4c4c774820c113f605e8086d.tar.gz gcc-dd37368c6d2f0e2b4c4c774820c113f605e8086d.tar.bz2 |
prune.exp: Correct regular expression for -ffunction-sections
2002-01-03 David Billinghurst <David.Billinghurst@riotinto.com>
* testsuite/lib/prune.exp: Correct regular expression for
-ffunction-sections
From-SVN: r48511
-rw-r--r-- | libstdc++-v3/ChangeLog | 5 | ||||
-rw-r--r-- | libstdc++-v3/testsuite/lib/prune.exp | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index cf7f6bd..24d1889 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,8 @@ +2002-01-03 David Billinghurst <David.Billinghurst@riotinto.com> + + * testsuite/lib/prune.exp: Correct regular expression for + -ffunction-sections + 2002-01-02 Phil Edwards <pme@gcc.gnu.org> * include/bits/stl_algo.h (upper_bound, equal_range, binary_search): diff --git a/libstdc++-v3/testsuite/lib/prune.exp b/libstdc++-v3/testsuite/lib/prune.exp index 3fcbf30..55c1080 100644 --- a/libstdc++-v3/testsuite/lib/prune.exp +++ b/libstdc++-v3/testsuite/lib/prune.exp @@ -19,7 +19,7 @@ proc prune_g++_output { text } { # Cygwin warns about -ffunction-sections - regsub -all "(^|\n)\[^\n\].*: -ffunction-sections may affect debugging on some targets.*" $text "" text + regsub -all "(^|\n)\[^\n\]*: -ffunction-sections may affect debugging on some targets\[^\n\]*" $text "" text return $text } |