From 565038ff32c362af00dec0611c0a886db1c20fc6 Mon Sep 17 00:00:00 2001 From: Aiden Grossman 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 e8c7912650cb8..0000000000000 --- 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 e8c7912650cb8..0000000000000 --- a/llvm/test/Transforms/Inline/ML/lit.local.cfg +++ /dev/null @@ -1,3 +0,0 @@ -import sys - -config.unsupported = sys.version_info.minor <= 8