llvm/test/CodeGen/MLRegalloc: Exclude python<=3.8 (D143218)

Type hint `list[foo]` isn't accepted by python-3.8
(Seems requires `typing.List`)
This commit is contained in:
NAKAMURA Takumi
2023-02-04 20:18:57 +09:00
parent 9ffe58dc27
commit e006c7dfa7

View File

@@ -1,3 +1,3 @@
import sys
config.unsupported = sys.version_info.minor <= 6
config.unsupported = sys.version_info.minor <= 8