[llvm] 0661309 - [X86] avx512-vbroadcast.ll - fix orphan check prefixes
Simon Pilgrim via llvm-commits
llvm-commits at lists.llvm.org
Tue Dec 12 10:35:02 PST 2023
Author: Simon Pilgrim
Date: 2023-12-12T18:34:53Z
New Revision: 06613095c4e56447d75560a0968d5af4025eee58
URL: https://github.com/llvm/llvm-project/commit/06613095c4e56447d75560a0968d5af4025eee58
DIFF: https://github.com/llvm/llvm-project/commit/06613095c4e56447d75560a0968d5af4025eee58.diff
LOG: [X86] avx512-vbroadcast.ll - fix orphan check prefixes
The AVX512F/AVX512BW checks had been removed despite still being used
Added:
Modified:
llvm/test/CodeGen/X86/avx512-vbroadcast.ll
Removed:
################################################################################
diff --git a/llvm/test/CodeGen/X86/avx512-vbroadcast.ll b/llvm/test/CodeGen/X86/avx512-vbroadcast.ll
index 52cf6f99cb4e54..275df8c3675c06 100644
--- a/llvm/test/CodeGen/X86/avx512-vbroadcast.ll
+++ b/llvm/test/CodeGen/X86/avx512-vbroadcast.ll
@@ -1,6 +1,6 @@
; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
-; RUN: llc < %s -mtriple=x86_64-unknown-linux-gnu -mattr=+avx512f | FileCheck %s --check-prefix=ALL
-; RUN: llc < %s -mtriple=x86_64-unknown-linux-gnu -mattr=+avx512bw | FileCheck %s --check-prefix=ALL
+; RUN: llc < %s -mtriple=x86_64-unknown-linux-gnu -mattr=+avx512f | FileCheck %s --check-prefixes=ALL,AVX512F
+; RUN: llc < %s -mtriple=x86_64-unknown-linux-gnu -mattr=+avx512bw | FileCheck %s --check-prefixes=ALL,AVX512BW
define <16 x i32> @_inreg16xi32(i32 %a) {
; ALL-LABEL: _inreg16xi32:
More information about the llvm-commits
mailing list