Skip to content

Commit 78ec95b

Browse files
committed
Renamed to atomic-vector
1 parent d9d4a1c commit 78ec95b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

llvm/test/CodeGen/X86/atomic-scalarization.ll renamed to llvm/test/CodeGen/X86/atomic-vector.ll

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py UTC_ARGS: --version 5
22
; RUN: llc %s --mtriple=x86_64 -o - | FileCheck %s
33

4-
define <1 x i32> @atomic_scalar_i32(ptr %x) {
5-
; CHECK-LABEL: atomic_scalar_i32:
4+
define <1 x i32> @atomic_vector_i32(ptr %x) {
5+
; CHECK-LABEL: atomic_vector_i32:
66
; CHECK: # %bb.0:
77
; CHECK-NEXT: movl (%rdi), %eax
88
; CHECK-NEXT: retq
99
%ret = load atomic <1 x i32>, ptr %x acquire, align 4
1010
ret <1 x i32> %ret
1111
}
1212

13-
define <1 x bfloat> @atomic_scalar_bfloat(ptr %x) {
14-
; CHECK-LABEL: atomic_scalar_bfloat:
13+
define <1 x bfloat> @atomic_vector_bfloat(ptr %x) {
14+
; CHECK-LABEL: atomic_vector_bfloat:
1515
; CHECK: # %bb.0:
1616
; CHECK-NEXT: movzwl (%rdi), %eax
1717
; CHECK-NEXT: pinsrw $0, %eax, %xmm0

0 commit comments

Comments
 (0)