Map .eblif extension as blif.

Signed-off-by: litghost <537074+litghost@users.noreply.github.com>
This commit is contained in:
litghost 2018-08-13 14:02:53 -07:00
parent e275692e84
commit 80d7e007ff
1 changed files with 2 additions and 0 deletions

View File

@ -825,6 +825,8 @@ void run_frontend(std::string filename, std::string command, std::string *backen
command = "vhdl";
else if (filename.size() > 4 && filename.substr(filename.size()-5) == ".blif")
command = "blif";
else if (filename.size() > 5 && filename.substr(filename.size()-6) == ".eblif")
command = "blif";
else if (filename.size() > 4 && filename.substr(filename.size()-5) == ".json")
command = "json";
else if (filename.size() > 3 && filename.substr(filename.size()-3) == ".il")