Commit 0585896c by Jason Merrill Committed by Jason Merrill

prune.exp (prune_gcc_output): Also ignore "In constructor" and "In instantiation".

        * lib/prune.exp (prune_gcc_output): Also ignore "In constructor"
        and "In instantiation".

From-SVN: r45127
parent 40803cd5
2001-08-23 Jason Merrill <jason_merrill@redhat.com>
* lib/prune.exp (prune_gcc_output): Also ignore "In constructor"
and "In instantiation".
2001-08-21 Aldy Hernandez <aldyh@redhat.com> 2001-08-21 Aldy Hernandez <aldyh@redhat.com>
* gcc.c-torture/execute/divmod-1.c: Convert to ANSI. * gcc.c-torture/execute/divmod-1.c: Convert to ANSI.
......
...@@ -19,7 +19,7 @@ ...@@ -19,7 +19,7 @@
proc prune_gcc_output { text } { proc prune_gcc_output { text } {
#send_user "Before:$text\n" #send_user "Before:$text\n"
regsub -all "(^|\n)\[^\n\]*: In (function|method) \[^\n\]*" $text "" text regsub -all "(^|\n)\[^\n\]*: In (function|method|constructor|instantiation) \[^\n\]*" $text "" text
regsub -all "(^|\n)\[^\n\]*: At top level:\[^\n\]*" $text "" text regsub -all "(^|\n)\[^\n\]*: At top level:\[^\n\]*" $text "" text
regsub -all "(^|\n)collect2: ld returned \[^\n\]*" $text "" text regsub -all "(^|\n)collect2: ld returned \[^\n\]*" $text "" text
regsub -all "(^|\n)Please submit.*instructions\[^\n\]*" $text "" text regsub -all "(^|\n)Please submit.*instructions\[^\n\]*" $text "" text
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment