From 329d23c5d63c38455cbb1fe01785fd91e0fa1a9d Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Thu, 27 May 2004 07:40:12 +0000 Subject: [PATCH] Regenerate. --- src/parse-gram.c | 8 ++++++-- src/parse-gram.h | 2 +- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/src/parse-gram.c b/src/parse-gram.c index 5597ab1..074377a 100644 --- a/src/parse-gram.c +++ b/src/parse-gram.c @@ -1,4 +1,4 @@ -/* A Bison parser, made by GNU Bison 1.875d. */ +/* A Bison parser, made by GNU Bison 1.875e. */ /* Skeleton parser for Yacc-like parsing with Bison, Copyright (C) 1984, 1989, 1990, 2000, 2001, 2002, 2003, 2004 Free Software Foundation, Inc. @@ -1941,7 +1941,11 @@ lloc_default (YYLTYPE const *rhs, int n) { int i; YYLTYPE loc; - loc.start = loc.end = rhs[n].end; + + /* SGI MIPSpro 7.4.1m miscompiles "loc.start = loc.end = rhs[n].end;". + The bug is fixed in 7.4.2m, but play it safe for now. */ + loc.start = rhs[n].end; + loc.end = rhs[n].end; /* Ignore empty nonterminals the start of the the right-hand side. Do not bother to ignore them at the end of the right-hand side, diff --git a/src/parse-gram.h b/src/parse-gram.h index b6cb75c..5c34e2a 100644 --- a/src/parse-gram.h +++ b/src/parse-gram.h @@ -1,4 +1,4 @@ -/* A Bison parser, made by GNU Bison 1.875d. */ +/* A Bison parser, made by GNU Bison 1.875e. */ /* Skeleton parser for Yacc-like parsing with Bison, Copyright (C) 1984, 1989, 1990, 2000, 2001, 2002, 2003, 2004 Free Software Foundation, Inc. -- 2.7.4