[OptTable] Fix typo VALUE => VALUES (NFCI) (#121523)
[llvm-project.git] / llvm / test / CodeGen / Mips / Fast-ISel / mul1.ll
blobd84a10b2b111d12f390519ef0cc0f7c6d97d89ef
1 ; RUN: llc < %s -mtriple=mipsel -mcpu=mips32 -O0 -relocation-model=pic
2 ; RUN: llc < %s -mtriple=mipsel -mcpu=mips32r2 -O0 -relocation-model=pic
4 ; The test is just to make sure it is able to allocate
5 ; registers for this example. There was an issue with allocating AC0
6 ; after a mul instruction.
8 declare { i32, i1 } @llvm.smul.with.overflow.i32(i32, i32)
10 define i32 @foo(i32 %a, i32 %b)  {
11 entry:
12   %0 = mul i32 %a, %b
13   %1 = call { i32, i1 } @llvm.smul.with.overflow.i32(i32 %0, i32 %b)
14   %2 = extractvalue { i32, i1 } %1, 0
15   ret i32 %2