diff options
author | schwab <schwab@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-03-24 19:54:26 +0000 |
---|---|---|
committer | schwab <schwab@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-03-24 19:54:26 +0000 |
commit | 9994489fdbc5b906593c274d27b7e6c69d09b776 (patch) | |
tree | e1287226e5e82b27b4d4f2da7ccae36d254a36d2 /gcc/testsuite/lib | |
parent | beed1ffc50e354763869113398a2578fbad4baff (diff) | |
download | gcc-9994489fdbc5b906593c274d27b7e6c69d09b776.tar.gz |
gcc/testsuite/:
* 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
Diffstat (limited to 'gcc/testsuite/lib')
-rw-r--r-- | gcc/testsuite/lib/prune.exp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/gcc/testsuite/lib/prune.exp b/gcc/testsuite/lib/prune.exp index 8105340cfcd..2d1b1096198 100644 --- a/gcc/testsuite/lib/prune.exp +++ b/gcc/testsuite/lib/prune.exp @@ -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 |