diff options
author | Jack Howarth <howarth@bromo.med.uc.edu> | 2010-12-10 10:40:43 +0000 |
---|---|---|
committer | Iain Sandoe <iains@gcc.gnu.org> | 2010-12-10 10:40:43 +0000 |
commit | 082b966fdc1d7f2514b040411f0c1ee6515b8348 (patch) | |
tree | fc7d9fd1c267b02080bf8d655778c31d143d223f /libstdc++-v3 | |
parent | 9901ac6e89b708367ec23239200575a9cb6ae6b4 (diff) | |
download | gcc-082b966fdc1d7f2514b040411f0c1ee6515b8348.tar.gz |
dsymutil enabled for Fortran.
2010-12-10 Jack Howarth <howarth@bromo.med.uc.edu>
Iain Sandoe <iains@gcc.gnu.org>
PR 43751/target
gcc:
* config/darwin9.h (DSYMUTIL_SPEC): Add fortran source types.
testsuite:
* lib/prune.exp: Prune dsymutil warnings.
libstadc++-v3:
* testsuite/lib/prune.exp: Prune dsymutil warnings.
Co-Authored-By: Iain Sandoe <iains@gcc.gnu.org>
From-SVN: r167683
Diffstat (limited to 'libstdc++-v3')
-rw-r--r-- | libstdc++-v3/ChangeLog | 6 | ||||
-rw-r--r-- | libstdc++-v3/testsuite/lib/prune.exp | 5 |
2 files changed, 11 insertions, 0 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 2f7f245c78a..b11c4c52596 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,9 @@ +2010-12-10 Jack Howarth <howarth@bromo.med.uc.edu> + Iain Sandoe <iains@gcc.gnu.org> + + PR 43751/target + * testsuite/lib/prune.exp: Prune dsymutil warnings. + 2010-12-08 Nathan Froyd <froydnj@codesourcery.com> PR testsuite/46860 diff --git a/libstdc++-v3/testsuite/lib/prune.exp b/libstdc++-v3/testsuite/lib/prune.exp index a390878d76f..a1d8d083e58 100644 --- a/libstdc++-v3/testsuite/lib/prune.exp +++ b/libstdc++-v3/testsuite/lib/prune.exp @@ -50,6 +50,11 @@ proc libstdc++-dg-prune { system text } { 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 + # Ignore harmless warnings from Xcode 3.2.x. + regsub -all "(^|\n)\[^\n\]*ld: warning: can't add line info to anonymous symbol\[^\n\]*" $text "" text + regsub -all "(^|\n)\[^\n\]*warning: DWARFDebugInfoEntry::AppendDependants\[^\n\]*AT_\[^\n\]*_bound\[^\n\]*FORM_ref4\[^\n\]*" $text "" text + regsub -all "(^|\n)\[^\n\]*warning:\[^\n\]*TAG_variable: AT_location\[^\n\]*didn't have valid function low pc\[^\n\]*" $text "" text + foreach p $additional_prunes { if { [string length $p] > 0 } { # Following regexp matches a complete line containing $p. |