diff options
author | Clifford Wolf <clifford@clifford.at> | 2014-01-14 18:57:47 +0100 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2014-01-14 18:57:47 +0100 |
commit | 9a00980129268dee9ad3bc44468045164cff787a (patch) | |
tree | 71dc6da79cbc3764cc16e90cbc501d2b24f71894 /passes/techmap/libparse.h | |
parent | c1da7661a5d4dc2669db77912a8f81fa8095f1fa (diff) | |
download | yosys-9a00980129268dee9ad3bc44468045164cff787a.tar.gz yosys-9a00980129268dee9ad3bc44468045164cff787a.tar.bz2 yosys-9a00980129268dee9ad3bc44468045164cff787a.zip |
renamed LibertyParer to LibertyParser
Diffstat (limited to 'passes/techmap/libparse.h')
-rw-r--r-- | passes/techmap/libparse.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/passes/techmap/libparse.h b/passes/techmap/libparse.h index 8c4a2f5ca..eff268bbb 100644 --- a/passes/techmap/libparse.h +++ b/passes/techmap/libparse.h @@ -39,13 +39,13 @@ namespace PASS_DFFLIBMAP static std::set<std::string> whitelist; }; - struct LibertyParer + struct LibertyParser { FILE *f; int line; LibertyAst *ast; - LibertyParer(FILE *f) : f(f), line(1), ast(parse()) {} - ~LibertyParer() { if (ast) delete ast; } + LibertyParser(FILE *f) : f(f), line(1), ast(parse()) {} + ~LibertyParser() { if (ast) delete ast; } int lexer(std::string &str); LibertyAst *parse(); void error(); |