[llvm] 00a6817 - [X86] v4f32-immediate.ll - replace X32 check prefixes with X86
Simon Pilgrim via llvm-commits
llvm-commits at lists.llvm.org
Wed Jan 31 03:04:50 PST 2024
Author: Simon Pilgrim
Date: 2024-01-31T11:04:19Z
New Revision: 00a68171085dbf7f02ec8ddad6240d90ba6d7286
URL: https://github.com/llvm/llvm-project/commit/00a68171085dbf7f02ec8ddad6240d90ba6d7286
DIFF: https://github.com/llvm/llvm-project/commit/00a68171085dbf7f02ec8ddad6240d90ba6d7286.diff
LOG: [X86] v4f32-immediate.ll - replace X32 check prefixes with X86
We try to only use X32 for gnux32 triple tests.
Added:
Modified:
llvm/test/CodeGen/X86/v4f32-immediate.ll
Removed:
################################################################################
diff --git a/llvm/test/CodeGen/X86/v4f32-immediate.ll b/llvm/test/CodeGen/X86/v4f32-immediate.ll
index 690ef825f7ad7..ce886da0ce98c 100644
--- a/llvm/test/CodeGen/X86/v4f32-immediate.ll
+++ b/llvm/test/CodeGen/X86/v4f32-immediate.ll
@@ -1,12 +1,12 @@
; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
-; RUN: llc < %s -mtriple=i686-unknown -mattr=+sse | FileCheck %s --check-prefix=X32
+; RUN: llc < %s -mtriple=i686-unknown -mattr=+sse | FileCheck %s --check-prefix=X86
; RUN: llc < %s -mtriple=x86_64-unknown -mattr=+sse | FileCheck %s --check-prefix=X64
define <4 x float> @foo() {
-; X32-LABEL: foo:
-; X32: # %bb.0:
-; X32-NEXT: movaps {{.*#+}} xmm0 = [3.22354245E+0,2.29999995E+0,1.20000005E+0,1.00000001E-1]
-; X32-NEXT: retl
+; X86-LABEL: foo:
+; X86: # %bb.0:
+; X86-NEXT: movaps {{.*#+}} xmm0 = [3.22354245E+0,2.29999995E+0,1.20000005E+0,1.00000001E-1]
+; X86-NEXT: retl
;
; X64-LABEL: foo:
; X64: # %bb.0:
More information about the llvm-commits
mailing list