build/tools/language_by_filename: add svo to system-verilog extensions.

This commit is contained in:
Florent Kermarrec 2021-01-18 16:29:52 +01:00
parent 2cb4f513f1
commit 81f4ffafdb
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ def language_by_filename(name):
return "verilog" return "verilog"
elif extension in ["vhd", "vhdl", "vho"]: elif extension in ["vhd", "vhdl", "vho"]:
return "vhdl" return "vhdl"
elif extension in ["sv"]: elif extension in ["sv", "svo"]:
return "systemverilog" return "systemverilog"
return None return None