aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorJack Howarth <howarth@bromo.med.uc.edu>2010-12-10 10:40:43 +0000
committerIain Sandoe <iains@gcc.gnu.org>2010-12-10 10:40:43 +0000
commit082b966fdc1d7f2514b040411f0c1ee6515b8348 (patch)
treefc7d9fd1c267b02080bf8d655778c31d143d223f /gcc
parent9901ac6e89b708367ec23239200575a9cb6ae6b4 (diff)
downloadgcc-082b966fdc1d7f2514b040411f0c1ee6515b8348.zip
gcc-082b966fdc1d7f2514b040411f0c1ee6515b8348.tar.gz
gcc-082b966fdc1d7f2514b040411f0c1ee6515b8348.tar.bz2
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 'gcc')
-rw-r--r--gcc/ChangeLog6
-rw-r--r--gcc/config/darwin9.h2
-rw-r--r--gcc/testsuite/ChangeLog6
-rw-r--r--gcc/testsuite/lib/prune.exp4
4 files changed, 16 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 6828fcd..f07a6de 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,9 @@
+2010-12-10 Jack Howarth <howarth@bromo.med.uc.edu>
+ Iain Sandoe <iains@gcc.gnu.org>
+
+ PR 43751/target
+ * config/darwin9.h (DSYMUTIL_SPEC): Add fortran source types.
+
2010-12-10 Iain Sandoe <iains@gcc.gnu.org>
* config/rs6000/rs6000.c
diff --git a/gcc/config/darwin9.h b/gcc/config/darwin9.h
index 65d3cb8..8281183 100644
--- a/gcc/config/darwin9.h
+++ b/gcc/config/darwin9.h
@@ -29,7 +29,7 @@ along with GCC; see the file COPYING3. If not see
"%{!fdump=*:%{!fsyntax-only:%{!c:%{!M:%{!MM:%{!E:%{!S:\
%{v} \
%{g*:%{!gstabs*:%{!g0: -idsym}}}\
- %{.c|.cc|.C|.cpp|.cp|.c++|.cxx|.CPP|.m|.mm|.s: \
+ %{.c|.cc|.C|.cpp|.cp|.c++|.cxx|.CPP|.m|.mm|.s|.f|.f90|.f95|.f03|.f77|.for|.F|.F90|.F95|.F03: \
%{g*:%{!gstabs*:%{!g0: -dsym}}}}}}}}}}}"
/* Tell collect2 to run dsymutil for us as necessary. */
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index afba479..b2978f0 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -1,3 +1,9 @@
+2010-12-10 Jack Howarth <howarth@bromo.med.uc.edu>
+ Iain Sandoe <iains@gcc.gnu.org>
+
+ PR 43751/target
+ * lib/prune.exp: Prune dsymutil warnings.
+
2010-12-10 Nicola Pero <nicola.pero@meta-innovation.com>
* objc.dg/class-extension-1.m: New.
diff --git a/gcc/testsuite/lib/prune.exp b/gcc/testsuite/lib/prune.exp
index 0ec277b..4e08bf3 100644
--- a/gcc/testsuite/lib/prune.exp
+++ b/gcc/testsuite/lib/prune.exp
@@ -54,7 +54,9 @@ proc prune_gcc_output { 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
+
#send_user "After:$text\n"
return $text