aboutsummaryrefslogtreecommitdiffstats
path: root/frontends/blif/blifparse.cc
diff options
context:
space:
mode:
authorEddie Hung <eddie@fpgeh.com>2019-08-15 10:26:24 -0700
committerEddie Hung <eddie@fpgeh.com>2019-08-15 10:26:24 -0700
commit847c54088e14c141560a9f627f5aea5da5bf4517 (patch)
tree2865aad1817f9299013eca01376fd869e63215bd /frontends/blif/blifparse.cc
parent02dead2e60e802986ac80137667e399d45233cdc (diff)
downloadyosys-847c54088e14c141560a9f627f5aea5da5bf4517.tar.gz
yosys-847c54088e14c141560a9f627f5aea5da5bf4517.tar.bz2
yosys-847c54088e14c141560a9f627f5aea5da5bf4517.zip
Change signature of parse_blif to take IdString
Diffstat (limited to 'frontends/blif/blifparse.cc')
-rw-r--r--frontends/blif/blifparse.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/frontends/blif/blifparse.cc b/frontends/blif/blifparse.cc
index a6a07863f..d17cacf29 100644
--- a/frontends/blif/blifparse.cc
+++ b/frontends/blif/blifparse.cc
@@ -78,7 +78,7 @@ failed:
return std::pair<RTLIL::IdString, int>("\\" + name, 0);
}
-void parse_blif(RTLIL::Design *design, std::istream &f, std::string dff_name, bool run_clean, bool sop_mode, bool wideports)
+void parse_blif(RTLIL::Design *design, std::istream &f, IdString dff_name, bool run_clean, bool sop_mode, bool wideports)
{
RTLIL::Module *module = nullptr;
RTLIL::Const *lutptr = NULL;