[llvm] [MLGO] Remove Python <3.8 from unsupported config (PR #106132)

via llvm-commits llvm-commits at lists.llvm.org
Mon Aug 26 13:39:09 PDT 2024


llvmbot wrote:


<!--LLVM PR SUMMARY COMMENT-->

@llvm/pr-subscribers-llvm-transforms

Author: Aiden Grossman (boomanaiden154)

<details>
<summary>Changes</summary>

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.

---
Full diff: https://github.com/llvm/llvm-project/pull/106132.diff


2 Files Affected:

- (removed) llvm/test/CodeGen/MLRegAlloc/lit.local.cfg (-3) 
- (removed) llvm/test/Transforms/Inline/ML/lit.local.cfg (-3) 


``````````diff
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

``````````

</details>


https://github.com/llvm/llvm-project/pull/106132


More information about the llvm-commits mailing list