gcc/testsuite/:
authorschwab <schwab@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 24 Mar 2004 19:54:26 +0000 (19:54 +0000)
committerschwab <schwab@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 24 Mar 2004 19:54:26 +0000 (19:54 +0000)
* lib/prune.exp (prune_gcc_output): Ignore errata warning from
IA64 assembler.

libstdc++-v3/:
* testsuite/lib/prune.exp (prune_g++_output): Ignore errata
warning from IA64 assembler.

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

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

index 9019261..572f527 100644 (file)
@@ -1,3 +1,8 @@
+2004-03-24  Andreas Schwab  <schwab@suse.de>
+
+       * lib/prune.exp (prune_gcc_output): Ignore errata warning from
+       IA64 assembler.
+
 2004-03-23  Joseph S. Myers  <jsm@polyomino.org.uk>
            Roger Sayle  <roger@eyesopen.com>
 
index 8105340..2d1b109 100644 (file)
@@ -1,4 +1,4 @@
-#   Copyright (C) 1997, 1999, 2000, 2002 Free Software Foundation, Inc.
+#   Copyright (C) 1997, 1999, 2000, 2002, 2004 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
@@ -28,6 +28,10 @@ proc prune_gcc_output { text } {
     regsub -all "(^|\n)\[^\n\]*: warning: -f(pic|PIC) ignored for target\[^\n\]*" $text "" text
     regsub -all "(^|\n)\[^\n\]*: warning: -f(pic|PIC)( and -fpic are| is)? not supported\[^\n\]*" $text "" text
 
+    # Ignore errata warning from IA64 assembler.
+    regsub -all "(^|\n)\[^\n\]*: Additional NOP may be necessary to workaround Itanium processor A/B step errata" $text "" text
+    regsub -all "(^|\n)\[^\n*\]*: Assembler messages:\[^\n\]*" $text "" text
+
     # It would be nice to avoid passing anything to gcc that would cause it to
     # issue these messages (since ignoring them seems like a hack on our part),
     # but that's too difficult in the general case.  For example, sometimes
index 7328e0c..168f9ed 100644 (file)
@@ -1,3 +1,8 @@
+2004-03-24  Andreas Schwab  <schwab@suse.de>
+
+       * testsuite/lib/prune.exp (prune_g++_output): Ignore errata
+       warning from IA64 assembler.
+
 2004-03-24  Dhruv Matani  <dhruvbird@gmx.net>
        
        * include/ext/bitmap_allocator.h: (_Bit_scan_forward) -> Made this
index 7dc8eca..8b4e2cd 100644 (file)
@@ -1,4 +1,4 @@
-#   Copyright (C) 1997, 1999, 2000, 2001 Free Software Foundation, Inc.
+#   Copyright (C) 1997, 1999, 2000, 2001, 2004 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
@@ -25,5 +25,9 @@ proc prune_g++_output { text } {
     # definitions, etc as these confuse dejagnu
     regsub -all "(^|\n)\[^\n\]*: In function \[^\n\]*" $text "" text
 
+    # Ignore errata warning from IA64 assembler.
+    regsub -all "(^|\n)\[^\n\]*: Additional NOP may be necessary to workaround Itanium processor A/B step errata" $text "" text
+    regsub -all "(^|\n)\[^\n*\]*: Assembler messages:\[^\n\]*" $text "" text
+
     return $text
 }