This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

fortran lineno patch


... yet another bit of the build that didn't build by default.

installed after forcing its build on i686-pc-linux-gnu.

nathan
--
Nathan Sidwell    ::   http://www.codesourcery.com   ::     CodeSourcery LLC
         The voices in my head said this was stupid too
nathan@codesourcery.com : http://www.cs.bris.ac.uk/~nathan/ : nathan@acm.org

2003-05-03  Nathan Sidwell  <nathan@codesourcery.com>

	* ansify.c (die_unless): Revert lineno change here.

Index: f/ansify.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/f/ansify.c,v
retrieving revision 1.12
diff -c -3 -p -r1.12 ansify.c
*** f/ansify.c	1 May 2003 16:13:35 -0000	1.12
--- f/ansify.c	3 May 2003 11:24:05 -0000
*************** the Free Software Foundation, 59 Temple 
*** 27,33 ****
  #define die_unless(c) \
    do if (!(c)) \
      { \
!       fprintf (stderr, "%s:%lu: %s\n", argv[1], input_line, #c); \
        die (); \
      } \
    while(0)
--- 27,33 ----
  #define die_unless(c) \
    do if (!(c)) \
      { \
!       fprintf (stderr, "%s:%lu: %s\n", argv[1], lineno, #c); \
        die (); \
      } \
    while(0)

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]