Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / llvm / test / CodeGen / Mips / llvm-ir / isel.ll
blobcdcd3fd6876d7b87e2791793d66ae225ef3055ee
1 ; RUN: llc --mtriple=mips-mti-linux-gnu < %s -debug 2>&1 | FileCheck %s --check-prefixes=CHECK,MIPS
2 ; RUN: llc --mtriple=mips-mti-linux-gnu < %s -mattr=+micromips -debug 2>&1 | FileCheck %s --check-prefixes=CHECK,MM
4 ; REQUIRES: asserts
6 ; Test that the correct mul instruction is selected upfront.
8 ; CHECK-LABEL: Instruction selection ends:
9 ; MIPS: t{{[0-9]+}}: i32,i32 = MUL t{{[0-9]+}}, t{{[0-9]+}}
10 ; MM: t{{[0-9]+}}: i32,i32 = MUL_MM t{{[0-9]+}}, t{{[0-9]+}}
12 define i32 @mul(i32 %a, i32 %b) {
13 entry:
14   %0 = mul i32 %a, %b
15   ret i32 %0