OSDN Git Service

2002-01-03 David Billinghurst <David.Billinghurst@riotinto.com>
authorbillingd <billingd@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 3 Jan 2002 14:25:14 +0000 (14:25 +0000)
committerbillingd <billingd@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 3 Jan 2002 14:25:14 +0000 (14:25 +0000)
* testsuite/lib/prune.exp: Correct regular expression for
-ffunction-sections

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@48511 138bc75d-0d04-0410-961f-82ee72b054a4

libstdc++-v3/ChangeLog
libstdc++-v3/testsuite/lib/prune.exp

index cf7f6bd..24d1889 100644 (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):
index 3fcbf30..55c1080 100644 (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
 }