]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
error.c (show_locus): Remove "In file" from error messages.
authorBrooks Moses <brooks.moses@codesourcery.com>
Fri, 3 Nov 2006 05:07:59 +0000 (05:07 +0000)
committerBrooks Moses <brooks@gcc.gnu.org>
Fri, 3 Nov 2006 05:07:59 +0000 (21:07 -0800)
* fortran/error.c (show_locus): Remove "In file" from error messages.
* testsuite/lib/gfortran-dg.exp (gfortran-dg-test): Remove expected "In file" from error
messages.

From-SVN: r118450

gcc/fortran/ChangeLog
gcc/fortran/error.c
gcc/testsuite/ChangeLog
gcc/testsuite/lib/gfortran-dg.exp

index f07fcc9416053dcd2902fac6e87f0dba1d87bd7f..800ba511f2a2b4614c4ca5d74581ec558496a807 100644 (file)
@@ -1,3 +1,7 @@
+2006-11-02  Brooks Moses  <brooks.moses@codesourcery.com>
+
+       * error.c (show_locus): Remove "In file" from error messages.
+
 2006-10-31  Geoffrey Keating  <geoffk@apple.com>
 
        * trans-decl.c (gfc_generate_constructors): Update for removal
index f63e41634a997c92ddad8014854c28f799175cad..c4ef9d642e0b032ca885653ceb3389d06d404302 100644 (file)
@@ -134,7 +134,7 @@ show_locus (int offset, locus * loc)
 
   lb = loc->lb;
   f = lb->file;
-  error_printf ("In file %s:%d\n", f->filename,
+  error_printf ("%s:%d\n", f->filename,
 #ifdef USE_MAPPED_LOCATION
                LOCATION_LINE (lb->location)
 #else
index bfff1679f0741fc581347bcb994db6663f61e66e..51bceea576c01db3b99ede93b59e7fe267fc1ffc 100644 (file)
@@ -1,3 +1,8 @@
+2006-11-02  Brooks Moses  <brooks.moses@codesourcery.com>
+
+       * lib/gfortran-dg.exp (gfortran-dg-test): Remove expected "In file"
+       from error messages.
+
 2006-11-02  Mike Stump  <mrs@apple.com>
 
        * obj-c++.dg/const-str-9.mm: Don't run on 64-bit.
index 6ceb7fc3255545538b10ff21e382b53ded9f717b..421e4a49eaca22234ebc3e82d851c48e12d538fc 100644 (file)
@@ -26,23 +26,23 @@ proc gfortran-dg-test { prog do_what extra_tool_flags } {
     set output_file [lindex $result 1]
 
     # gfortran error messages look like this:
-    #      In file [name]:[line]
+    #      [name]:[line]
     #
     #        some code
     #              1
-    #     Error: Some error at (1) and (2)
+    #     Error: Some error at (1)
     # or
-    #      In file [name]:[line]
+    #      [name]:[line]
     #
     #       some code
     #              1
-    #      In file [name]:[line2]
+    #      [name]:[line2]
     #
     #       some other code
     #         2
     #     Error: Some error at (1) and (2)
     # or
-    #      In file [name]:[line]
+    #      [name]:[line]
     #
     #       some code and some more code
     #              1       2
@@ -59,7 +59,7 @@ proc gfortran-dg-test { prog do_what extra_tool_flags } {
     # Note that these regexps only make sense in the combinations used below.
     # Note also that is imperative that we first deal with the form with
     # two loci.
-    set locus_regexp " In file (\[^\n\]*)\n\n\[^\n\]*\n\[^\n\]*\n"
+    set locus_regexp " (\[^\n\]*)\n\n\[^\n\]*\n\[^\n\]*\n"
     set diag_regexp "(\[^\n\]*)\n"
 
     set two_loci "$locus_regexp$locus_regexp$diag_regexp"