Signed-off-by: Matt Liberty <mliberty@precisioninno.com>
This commit is contained in:
parent
ee700ba0f4
commit
e3e1043830
|
|
@ -38,11 +38,12 @@
|
|||
#define loc_line(loc) loc.begin.line
|
||||
%}
|
||||
|
||||
%require "3.0"
|
||||
%require "3.2"
|
||||
%skeleton "lalr1.cc"
|
||||
%debug
|
||||
%define api.namespace {sta}
|
||||
%locations
|
||||
%define api.location.file "LibertyLocation.hh"
|
||||
%define parse.assert
|
||||
%parse-param { LibertyScanner *scanner }
|
||||
%parse-param { LibertyParser *reader }
|
||||
|
|
|
|||
|
|
@ -30,7 +30,7 @@
|
|||
#include <FlexLexer.h>
|
||||
#endif
|
||||
|
||||
#include "location.hh"
|
||||
#include "LibertyLocation.hh"
|
||||
#include "LibertyParse.hh"
|
||||
|
||||
namespace sta {
|
||||
|
|
|
|||
|
|
@ -35,11 +35,12 @@
|
|||
#pragma GCC diagnostic ignored "-Wunused-but-set-variable"
|
||||
%}
|
||||
|
||||
%require "3.0"
|
||||
%require "3.2"
|
||||
%skeleton "lalr1.cc"
|
||||
%debug
|
||||
%define api.namespace {sta}
|
||||
%locations
|
||||
%define api.location.file "SdfLocation.hh"
|
||||
%define parse.assert
|
||||
%parse-param { SdfScanner *scanner }
|
||||
%parse-param { SdfReader *reader }
|
||||
|
|
|
|||
|
|
@ -30,7 +30,7 @@
|
|||
#include <FlexLexer.h>
|
||||
#endif
|
||||
|
||||
#include "location.hh"
|
||||
#include "SdfLocation.hh"
|
||||
#include "SdfParse.hh"
|
||||
|
||||
namespace sta {
|
||||
|
|
|
|||
|
|
@ -48,11 +48,12 @@ sta::VerilogParse::error(const location_type &loc,
|
|||
}
|
||||
%}
|
||||
|
||||
%require "3.0"
|
||||
%require "3.2"
|
||||
%skeleton "lalr1.cc"
|
||||
%debug
|
||||
%define api.namespace {sta}
|
||||
%locations
|
||||
%define api.location.file "VerilogLocation.hh"
|
||||
%define parse.assert
|
||||
%parse-param { VerilogScanner *scanner }
|
||||
%parse-param { VerilogReader *reader }
|
||||
|
|
|
|||
|
|
@ -30,7 +30,7 @@
|
|||
#include <FlexLexer.h>
|
||||
#endif
|
||||
|
||||
#include "location.hh"
|
||||
#include "VerilogLocation.hh"
|
||||
#include "VerilogParse.hh"
|
||||
|
||||
namespace sta {
|
||||
|
|
|
|||
Loading…
Reference in New Issue