[llvm] f6d6d2d - [X86] bittest-big-integer.ll - add missing AVX2/AVX512 checks (#165856)
via llvm-commits
llvm-commits at lists.llvm.org
Fri Oct 31 08:18:00 PDT 2025
Author: Simon Pilgrim
Date: 2025-10-31T15:17:55Z
New Revision: f6d6d2d5a260169abc1d12e8d828fb74b0d3372a
URL: https://github.com/llvm/llvm-project/commit/f6d6d2d5a260169abc1d12e8d828fb74b0d3372a
DIFF: https://github.com/llvm/llvm-project/commit/f6d6d2d5a260169abc1d12e8d828fb74b0d3372a.diff
LOG: [X86] bittest-big-integer.ll - add missing AVX2/AVX512 checks (#165856)
These were removed in #165742 but separate tests from #165758 still need
them
Added:
Modified:
llvm/test/CodeGen/X86/bittest-big-integer.ll
Removed:
################################################################################
diff --git a/llvm/test/CodeGen/X86/bittest-big-integer.ll b/llvm/test/CodeGen/X86/bittest-big-integer.ll
index 5776c6c82bcc3..dffe9005094ab 100644
--- a/llvm/test/CodeGen/X86/bittest-big-integer.ll
+++ b/llvm/test/CodeGen/X86/bittest-big-integer.ll
@@ -2,8 +2,8 @@
; RUN: llc < %s -mtriple=i686-- | FileCheck %s --check-prefixes=X86
; RUN: llc < %s -mtriple=x86_64-- -mcpu=x86-64 | FileCheck %s --check-prefixes=X64,SSE
; RUN: llc < %s -mtriple=x86_64-- -mcpu=x86-64-v2 | FileCheck %s --check-prefixes=X64,SSE
-; RUN: llc < %s -mtriple=x86_64-- -mcpu=x86-64-v3 | FileCheck %s --check-prefixes=X64,AVX
-; RUN: llc < %s -mtriple=x86_64-- -mcpu=x86-64-v4 | FileCheck %s --check-prefixes=X64,AVX
+; RUN: llc < %s -mtriple=x86_64-- -mcpu=x86-64-v3 | FileCheck %s --check-prefixes=X64,AVX,AVX2
+; RUN: llc < %s -mtriple=x86_64-- -mcpu=x86-64-v4 | FileCheck %s --check-prefixes=X64,AVX,AVX512
; bt/btc/btr/bts patterns + 'init' to set single bit value in large integers
More information about the llvm-commits
mailing list