Commit a3cb3858 authored by Tristan Gingold's avatar Tristan Gingold

vhdl_parser.py: remove unused variable.

parent c25cf315
......@@ -113,10 +113,6 @@ class VHDLParser(DepParser):
buf = re.sub(entity_pattern, do_entity, buf)
# new architecture
architecture_pattern = re.compile(
r"^\s*architecture\s+(?P<name>\w+)\s+of\s+(\w+)\s+is"
r".*end\s*((|architecture)\s*(?P=name)|architecture)\s*;",
re.DOTALL | re.MULTILINE | re.IGNORECASE)
architecture_split_pattern = re.compile(
r"^\s*architecture\s+(?P<name>\w+)\s+of\s+(\w+)\s+is",
re.DOTALL | re.MULTILINE | re.IGNORECASE)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment