Change signature of parse_blif to take IdString
authorEddie Hung <eddie@fpgeh.com>
Thu, 15 Aug 2019 17:26:24 +0000 (10:26 -0700)
committerEddie Hung <eddie@fpgeh.com>
Thu, 15 Aug 2019 17:26:24 +0000 (10:26 -0700)
frontends/blif/blifparse.cc
frontends/blif/blifparse.h

index a6a07863fae8bfcbdc6e3948e8bf6f40ec01eb60..d17cacf296c6c6a5aed3258a4605e830cd0c3be7 100644 (file)
@@ -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;
index 955b6aacfedf221e725f344488dc1d7db31a00b4..2b84cb795f0c2a61afa1035aa27c1bf6ab57218e 100644 (file)
@@ -24,7 +24,7 @@
 
 YOSYS_NAMESPACE_BEGIN
 
-extern void parse_blif(RTLIL::Design *design, std::istream &f, std::string dff_name,
+extern void parse_blif(RTLIL::Design *design, std::istream &f, IdString dff_name,
                bool run_clean = false, bool sop_mode = false, bool wideports = false);
 
 YOSYS_NAMESPACE_END