[llvm] a959d70 - [MLGO] Remove Python <3.8 from unsupported config (#106132)
via llvm-commits
llvm-commits at lists.llvm.org
Mon Aug 26 13:57:46 PDT 2024
Author: Aiden Grossman
Date: 2024-08-26T13:57:43-07:00
New Revision: a959d70eb5b6d47c0b32eb34fc409e50c01d722d
URL: https://github.com/llvm/llvm-project/commit/a959d70eb5b6d47c0b32eb34fc409e50c01d722d
DIFF: https://github.com/llvm/llvm-project/commit/a959d70eb5b6d47c0b32eb34fc409e50c01d722d.diff
LOG: [MLGO] Remove Python <3.8 from unsupported config (#106132)
Now that Python 3.8 is the minimum version supported by LLVM, we don't
need to explicitly check that the python version we are using is greater
than 3.8 in the MLGO tests.
Added:
Modified:
Removed:
llvm/test/CodeGen/MLRegAlloc/lit.local.cfg
llvm/test/Transforms/Inline/ML/lit.local.cfg
################################################################################
diff --git a/llvm/test/CodeGen/MLRegAlloc/lit.local.cfg b/llvm/test/CodeGen/MLRegAlloc/lit.local.cfg
deleted file mode 100644
index e8c7912650cb8e..00000000000000
--- a/llvm/test/CodeGen/MLRegAlloc/lit.local.cfg
+++ /dev/null
@@ -1,3 +0,0 @@
-import sys
-
-config.unsupported = sys.version_info.minor <= 8
diff --git a/llvm/test/Transforms/Inline/ML/lit.local.cfg b/llvm/test/Transforms/Inline/ML/lit.local.cfg
deleted file mode 100644
index e8c7912650cb8e..00000000000000
--- a/llvm/test/Transforms/Inline/ML/lit.local.cfg
+++ /dev/null
@@ -1,3 +0,0 @@
-import sys
-
-config.unsupported = sys.version_info.minor <= 8
More information about the llvm-commits
mailing list