nir/algebraic: Fix typo in error message print.

Reviewed-by: Alyssa Rosenzweig <alyssa.rosenzweig@intel.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/39076>
This commit is contained in:
Emma Anholt 2025-12-22 21:18:40 -08:00 committed by Marge Bot
parent 363b2655b6
commit 14fafebc1a

View file

@ -1286,7 +1286,7 @@ class AlgebraicPass(object):
print("Transform expected to have too many commutative "
"expression but did not "
"({} <= {}).".format(
comm_exprs, nir_search_max_comm_op),
comm_exprs, nir_search_max_comm_ops),
file=sys.stderr)
print(" " + str(xform), file=sys.stderr)
traceback.print_exc(file=sys.stderr)