[libc++][NFC] Fix incorrect comment for vector::assign(iter, iter) test
[llvm-project.git] / llvm / test / CodeGen / Mips / GlobalISel / regbankselect / fence.mir
blob9c7ec54d974356259f911393985be19d8520dfee
1 # NOTE: Assertions have been autogenerated by utils/update_mir_test_checks.py
2 # RUN: llc -O0 -mtriple=mipsel-linux-gnu -run-pass=regbankselect -verify-machineinstrs %s -o - | FileCheck %s -check-prefixes=MIPS32
3 --- |
5   define void @atomic_load_i32(ptr %ptr) { ret void }
7 ...
8 ---
9 name:            atomic_load_i32
10 alignment:       4
11 legalized:       true
12 tracksRegLiveness: true
13 body:             |
14   bb.1 (%ir-block.0):
15     liveins: $a0
17     ; MIPS32-LABEL: name: atomic_load_i32
18     ; MIPS32: liveins: $a0
19     ; MIPS32: [[COPY:%[0-9]+]]:gprb(p0) = COPY $a0
20     ; MIPS32: [[LOAD:%[0-9]+]]:gprb(s32) = G_LOAD [[COPY]](p0) :: (load monotonic (s32) from %ir.ptr)
21     ; MIPS32: G_FENCE 4, 1
22     ; MIPS32: $v0 = COPY [[LOAD]](s32)
23     ; MIPS32: RetRA implicit $v0
24     %0:_(p0) = COPY $a0
25     %1:_(s32) = G_LOAD %0(p0) :: (load monotonic (s32) from %ir.ptr)
26     G_FENCE 4, 1
27     $v0 = COPY %1(s32)
28     RetRA implicit $v0
30 ...