Revert r354244 "[DAGCombiner] Eliminate dead stores to stack."
[llvm-complete.git] / test / CodeGen / Mips / GlobalISel / regbankselect / mul.mir
blob18ed66020dd94444451e37f0d7b665734d843880
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 @mul_i32(i32 %x, i32 %y) {entry: ret void}
7 ...
8 ---
9 name:            mul_i32
10 alignment:       2
11 legalized:       true
12 tracksRegLiveness: true
13 body:             |
14   bb.0.entry:
15     liveins: $a0, $a1
17     ; MIPS32-LABEL: name: mul_i32
18     ; MIPS32: liveins: $a0, $a1
19     ; MIPS32: [[COPY:%[0-9]+]]:gprb(s32) = COPY $a0
20     ; MIPS32: [[COPY1:%[0-9]+]]:gprb(s32) = COPY $a1
21     ; MIPS32: [[MUL:%[0-9]+]]:gprb(s32) = G_MUL [[COPY]], [[COPY1]]
22     ; MIPS32: $v0 = COPY [[MUL]](s32)
23     ; MIPS32: RetRA implicit $v0
24     %0:_(s32) = COPY $a0
25     %1:_(s32) = COPY $a1
26     %2:_(s32) = G_MUL %0, %1
27     $v0 = COPY %2(s32)
28     RetRA implicit $v0
30 ...