Fix typo in predicate combination.

This commit is contained in:
Jakob Stoklund Olesen
2016-08-31 08:48:31 -07:00
parent 997919c696
commit 036fa46b37

View File

@@ -1095,7 +1095,7 @@ class Encoding(object):
self.encbits = encbits
# Combine recipe predicates with the manually specified ones.
self.instp = And.combine(recipe.instp, instp)
self.isap = And.combine(recipe.isap, instp)
self.isap = And.combine(recipe.isap, isap)
def __str__(self):
return '[{}/{:02x}]'.format(self.recipe, self.encbits)