Browse Source
remove bison generated files from the repository
remove bison generated files from the repository
Their presence breaks automake rules when running in a separate build directory. And when regenerated cause unwanted "changed files" in the repository. As a consequence visual C compilation will fail. It will still work with a "make dist" generated tar ball. We need to upgrade the visual C project files to invoke bison and flex on windows, or we have to provide these generated files in a visual C specific directory. (very annoying of course)pre-master-46
4 changed files with 0 additions and 4200 deletions
-
2019src/frontend/parse-bison.c
-
96src/frontend/parse-bison.h
-
1977src/spicelib/parser/inpptree-parser.c
-
108src/spicelib/parser/inpptree-parser.h
2019
src/frontend/parse-bison.c
File diff suppressed because it is too large
View File
File diff suppressed because it is too large
View File
@ -1,96 +0,0 @@ |
|||
/* A Bison parser, made by GNU Bison 2.5. */ |
|||
|
|||
/* Bison interface for Yacc-like parsers in C |
|||
|
|||
Copyright (C) 1984, 1989-1990, 2000-2011 Free Software Foundation, Inc. |
|||
|
|||
This program is free software: you can redistribute it and/or modify |
|||
it under the terms of the GNU General Public License as published by |
|||
the Free Software Foundation, either version 3 of the License, or |
|||
(at your option) any later version. |
|||
|
|||
This program is distributed in the hope that it will be useful, |
|||
but WITHOUT ANY WARRANTY; without even the implied warranty of |
|||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|||
GNU General Public License for more details. |
|||
|
|||
You should have received a copy of the GNU General Public License |
|||
along with this program. If not, see <http://www.gnu.org/licenses/>. */ |
|||
|
|||
/* As a special exception, you may create a larger work that contains |
|||
part or all of the Bison parser skeleton and distribute that work |
|||
under terms of your choice, so long as that work isn't itself a |
|||
parser generator using the skeleton or a modified version thereof |
|||
as a parser skeleton. Alternatively, if you modify or redistribute |
|||
the parser skeleton itself, you may (at your option) remove this |
|||
special exception, which will cause the skeleton and the resulting |
|||
Bison output files to be licensed under the GNU General Public |
|||
License without this special exception. |
|||
|
|||
This special exception was added by the Free Software Foundation in |
|||
version 2.2 of Bison. */ |
|||
|
|||
|
|||
/* Tokens. */ |
|||
#ifndef YYTOKENTYPE |
|||
# define YYTOKENTYPE |
|||
/* Put the tokens into the symbol table, so that GDB and other debuggers |
|||
know about them. */ |
|||
enum yytokentype { |
|||
TOK_NUM = 258, |
|||
TOK_STR = 259, |
|||
TOK_LE = 260, |
|||
TOK_GE = 261, |
|||
TOK_NE = 262, |
|||
NEG = 263 |
|||
}; |
|||
#endif |
|||
/* Tokens. */ |
|||
#define TOK_NUM 258 |
|||
#define TOK_STR 259 |
|||
#define TOK_LE 260 |
|||
#define TOK_GE 261 |
|||
#define TOK_NE 262 |
|||
#define NEG 263 |
|||
|
|||
|
|||
|
|||
|
|||
#if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED |
|||
typedef union YYSTYPE |
|||
{ |
|||
|
|||
/* Line 2068 of yacc.c */ |
|||
#line 45 "parse-bison.y" |
|||
|
|||
double num; |
|||
const char *str; |
|||
struct pnode *pnode; |
|||
|
|||
|
|||
|
|||
/* Line 2068 of yacc.c */ |
|||
#line 74 "parse-bison.h" |
|||
} YYSTYPE; |
|||
# define YYSTYPE_IS_TRIVIAL 1 |
|||
# define yystype YYSTYPE /* obsolescent; will be withdrawn */ |
|||
# define YYSTYPE_IS_DECLARED 1 |
|||
#endif |
|||
|
|||
|
|||
|
|||
#if ! defined YYLTYPE && ! defined YYLTYPE_IS_DECLARED |
|||
typedef struct YYLTYPE |
|||
{ |
|||
int first_line; |
|||
int first_column; |
|||
int last_line; |
|||
int last_column; |
|||
} YYLTYPE; |
|||
# define yyltype YYLTYPE /* obsolescent; will be withdrawn */ |
|||
# define YYLTYPE_IS_DECLARED 1 |
|||
# define YYLTYPE_IS_TRIVIAL 1 |
|||
#endif |
|||
|
|||
|
|||
|
|||
1977
src/spicelib/parser/inpptree-parser.c
File diff suppressed because it is too large
View File
File diff suppressed because it is too large
View File
@ -1,108 +0,0 @@ |
|||
/* A Bison parser, made by GNU Bison 2.5. */ |
|||
|
|||
/* Bison interface for Yacc-like parsers in C |
|||
|
|||
Copyright (C) 1984, 1989-1990, 2000-2011 Free Software Foundation, Inc. |
|||
|
|||
This program is free software: you can redistribute it and/or modify |
|||
it under the terms of the GNU General Public License as published by |
|||
the Free Software Foundation, either version 3 of the License, or |
|||
(at your option) any later version. |
|||
|
|||
This program is distributed in the hope that it will be useful, |
|||
but WITHOUT ANY WARRANTY; without even the implied warranty of |
|||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|||
GNU General Public License for more details. |
|||
|
|||
You should have received a copy of the GNU General Public License |
|||
along with this program. If not, see <http://www.gnu.org/licenses/>. */ |
|||
|
|||
/* As a special exception, you may create a larger work that contains |
|||
part or all of the Bison parser skeleton and distribute that work |
|||
under terms of your choice, so long as that work isn't itself a |
|||
parser generator using the skeleton or a modified version thereof |
|||
as a parser skeleton. Alternatively, if you modify or redistribute |
|||
the parser skeleton itself, you may (at your option) remove this |
|||
special exception, which will cause the skeleton and the resulting |
|||
Bison output files to be licensed under the GNU General Public |
|||
License without this special exception. |
|||
|
|||
This special exception was added by the Free Software Foundation in |
|||
version 2.2 of Bison. */ |
|||
|
|||
|
|||
/* Tokens. */ |
|||
#ifndef YYTOKENTYPE |
|||
# define YYTOKENTYPE |
|||
/* Put the tokens into the symbol table, so that GDB and other debuggers |
|||
know about them. */ |
|||
enum yytokentype { |
|||
TOK_NUM = 258, |
|||
TOK_STR = 259, |
|||
TOK_pnode = 260, |
|||
TOK_LE = 261, |
|||
TOK_LT = 262, |
|||
TOK_GE = 263, |
|||
TOK_GT = 264, |
|||
TOK_EQ = 265, |
|||
TOK_NE = 266, |
|||
TOK_OR = 267, |
|||
TOK_AND = 268, |
|||
NEG = 269 |
|||
}; |
|||
#endif |
|||
/* Tokens. */ |
|||
#define TOK_NUM 258 |
|||
#define TOK_STR 259 |
|||
#define TOK_pnode 260 |
|||
#define TOK_LE 261 |
|||
#define TOK_LT 262 |
|||
#define TOK_GE 263 |
|||
#define TOK_GT 264 |
|||
#define TOK_EQ 265 |
|||
#define TOK_NE 266 |
|||
#define TOK_OR 267 |
|||
#define TOK_AND 268 |
|||
#define NEG 269 |
|||
|
|||
|
|||
|
|||
|
|||
#if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED |
|||
typedef union YYSTYPE |
|||
{ |
|||
|
|||
/* Line 2068 of yacc.c */ |
|||
#line 43 "inpptree-parser.y" |
|||
|
|||
double num; |
|||
const char *str; |
|||
struct INPparseNode *pnode; |
|||
|
|||
|
|||
|
|||
/* Line 2068 of yacc.c */ |
|||
#line 86 "inpptree-parser.h" |
|||
} YYSTYPE; |
|||
# define YYSTYPE_IS_TRIVIAL 1 |
|||
# define yystype YYSTYPE /* obsolescent; will be withdrawn */ |
|||
# define YYSTYPE_IS_DECLARED 1 |
|||
#endif |
|||
|
|||
|
|||
|
|||
#if ! defined YYLTYPE && ! defined YYLTYPE_IS_DECLARED |
|||
typedef struct YYLTYPE |
|||
{ |
|||
int first_line; |
|||
int first_column; |
|||
int last_line; |
|||
int last_column; |
|||
} YYLTYPE; |
|||
# define yyltype YYLTYPE /* obsolescent; will be withdrawn */ |
|||
# define YYLTYPE_IS_DECLARED 1 |
|||
# define YYLTYPE_IS_TRIVIAL 1 |
|||
#endif |
|||
|
|||
|
|||
|
|||
Write
Preview
Loading…
Cancel
Save
Reference in new issue