3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-06-06 06:03:23 +00:00

renamed LibertyParer to LibertyParser

This commit is contained in:
Clifford Wolf 2014-01-14 18:57:47 +01:00
parent c1da7661a5
commit 9a00980129
3 changed files with 9 additions and 9 deletions

View file

@ -79,7 +79,7 @@ void LibertyAst::dump(FILE *f, std::string indent, std::string path, bool path_o
fprintf(f, " ;\n");
}
int LibertyParer::lexer(std::string &str)
int LibertyParser::lexer(std::string &str)
{
int c;
@ -154,7 +154,7 @@ int LibertyParer::lexer(std::string &str)
return c;
}
LibertyAst *LibertyParer::parse()
LibertyAst *LibertyParser::parse()
{
std::string str;
@ -219,14 +219,14 @@ LibertyAst *LibertyParer::parse()
#ifndef FILTERLIB
void LibertyParer::error()
void LibertyParser::error()
{
log_error("Syntax error in line %d.\n", line);
}
#else
void LibertyParer::error()
void LibertyParser::error()
{
fprintf(stderr, "Syntax error in line %d.\n", line);
exit(1);
@ -611,7 +611,7 @@ int main(int argc, char **argv)
}
}
LibertyParer parser(f);
LibertyParser parser(f);
if (parser.ast) {
if (flag_verilogsim)
gen_verilogsim(parser.ast);