-
Notifications
You must be signed in to change notification settings - Fork 571
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
i#6580: AArch64 codec.py: Remove variable reuse in function naming fl…
…ow (#6595) This patch refactors how the script gets hold of the name of generated functions. Previously there was a pass in opndset_naming() that overwrote the value of the opndset attribute. This was causing issues with type checking because this changed the type of an opndset from a tuple or string to always a string which was flagged as an error when .split() was used on it. As part of this change the fall-through code became completely dead code and has been removed. It was obsoleted originally by the addition of + masks for the operands. It was also revealed by this change that several encodings in the codecs were no longer used and represented less correct versions of other encodings. They have been removed. issue: #6580
- Loading branch information
1 parent
4f8e12f
commit 1d4659e
Showing
3 changed files
with
47 additions
and
110 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.