[llvm] 8763245 - [X86] pr134607.ll - regenerate test checks
Simon Pilgrim via llvm-commits
llvm-commits at lists.llvm.org
Mon Jul 7 04:03:38 PDT 2025
Author: Simon Pilgrim
Date: 2025-07-07T12:03:17+01:00
New Revision: 87632451165a9dd54f799c4544cea971e15f7719
URL: https://github.com/llvm/llvm-project/commit/87632451165a9dd54f799c4544cea971e15f7719
DIFF: https://github.com/llvm/llvm-project/commit/87632451165a9dd54f799c4544cea971e15f7719.diff
LOG: [X86] pr134607.ll - regenerate test checks
Added:
Modified:
llvm/test/CodeGen/X86/pr134607.ll
Removed:
################################################################################
diff --git a/llvm/test/CodeGen/X86/pr134607.ll b/llvm/test/CodeGen/X86/pr134607.ll
index 5e824c22e5a22..2b383fc964298 100644
--- a/llvm/test/CodeGen/X86/pr134607.ll
+++ b/llvm/test/CodeGen/X86/pr134607.ll
@@ -1,3 +1,4 @@
+; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py UTC_ARGS: --version 5
; RUN: llc < %s -mtriple=i386-unknown-unknown -mattr=+sse -O3 | FileCheck %s --check-prefixes=X86
; RUN: llc < %s -mtriple=x86_64-unknown-unknown -mattr=-sse2,+sse -O3 | FileCheck %s --check-prefixes=X64-SSE1
; RUN: llc < %s -mtriple=x86_64-unknown-unknown -mattr=+sse2,+sse -O3 | FileCheck %s --check-prefixes=X64-SSE2
@@ -5,16 +6,22 @@
define void @store_v2f32_constant(ptr %v) {
; X86-LABEL: store_v2f32_constant:
; X86: # %bb.0:
-; X86-NEXT: movl 4(%esp), %eax
-; X86-NEXT: movaps {{\.?LCPI[0-9]+_[0-9]+}}, %xmm0
-
+; X86-NEXT: movl {{[0-9]+}}(%esp), %eax
+; X86-NEXT: movaps {{.*#+}} xmm0 = [2.56E+2,5.12E+2,u,u]
+; X86-NEXT: movlps %xmm0, (%eax)
+; X86-NEXT: retl
+;
; X64-SSE1-LABEL: store_v2f32_constant:
; X64-SSE1: # %bb.0:
-; X64-SSE1-NEXT: movaps {{\.?LCPI[0-9]+_[0-9]+}}(%rip), %xmm0
-
+; X64-SSE1-NEXT: movaps {{.*#+}} xmm0 = [2.56E+2,5.12E+2,u,u]
+; X64-SSE1-NEXT: movlps %xmm0, (%rdi)
+; X64-SSE1-NEXT: retq
+;
; X64-SSE2-LABEL: store_v2f32_constant:
; X64-SSE2: # %bb.0:
-; X64-SSE2-NEXT: movsd {{\.?LCPI[0-9]+_[0-9]+}}(%rip), %xmm0
+; X64-SSE2-NEXT: movsd {{.*#+}} xmm0 = [2.56E+2,5.12E+2,0.0E+0,0.0E+0]
+; X64-SSE2-NEXT: movsd %xmm0, (%rdi)
+; X64-SSE2-NEXT: retq
store <2 x float> <float 2.560000e+02, float 5.120000e+02>, ptr %v, align 4
ret void
}
More information about the llvm-commits
mailing list