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
This commit is contained in:
David Billinghurst 2002-01-03 14:25:14 +00:00 committed by David Billinghurst
parent 5e55c6a242
commit dd37368c6d
2 changed files with 6 additions and 1 deletions

View File

@ -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):

View File

@ -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
}