pan/bi: Rename isa_parse to bifrost_isa

We use this for non-parsing code as well. Make the name clear.

Signed-off-by: Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/8213>
This commit is contained in:
Alyssa Rosenzweig 2020-11-27 13:24:53 -05:00 committed by Marge Bot
parent 27e37a7746
commit c3625f4ca8
3 changed files with 2 additions and 2 deletions

View File

@ -22,7 +22,7 @@
import sys
import itertools
from isa_parse import parse_instructions, opname_to_c, expand_states
from bifrost_isa import parse_instructions, opname_to_c, expand_states
from mako.template import Template
instructions = parse_instructions(sys.argv[1], include_unused = True)

View File

@ -21,7 +21,7 @@
# IN THE SOFTWARE.
import sys
from isa_parse import parse_instructions, opname_to_c
from bifrost_isa import parse_instructions, opname_to_c
from mako.template import Template
instructions = parse_instructions(sys.argv[1])