[llvm] [MLGO] Remove Python <3.8 from unsupported config (PR #106132)
Aiden Grossman via llvm-commits
llvm-commits at lists.llvm.org
Mon Aug 26 13:38:39 PDT 2024
https://github.com/boomanaiden154 created https://github.com/llvm/llvm-project/pull/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.
>From 565038ff32c362af00dec0611c0a886db1c20fc6 Mon Sep 17 00:00:00 2001
From: Aiden Grossman <aidengrossman at google.com>
Date: Sat, 24 Aug 2024 18:08:47 +0000
Subject: [PATCH] [MLGO] Remove Python <3.8 from unsupported config
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.
---
llvm/test/CodeGen/MLRegAlloc/lit.local.cfg | 3 ---
llvm/test/Transforms/Inline/ML/lit.local.cfg | 3 ---
2 files changed, 6 deletions(-)
delete mode 100644 llvm/test/CodeGen/MLRegAlloc/lit.local.cfg
delete mode 100644 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