Bump version to 19.1.0-rc3
[llvm-project.git] / llvm / test / CodeGen / PowerPC / mul-with-overflow.ll
blob1c0dbc5a19277fdb92a6843f90388af803ba429c
1 ; RUN: llc -verify-machineinstrs < %s -mtriple=ppc32--
3 declare {i32, i1} @llvm.umul.with.overflow.i32(i32 %a, i32 %b)
4 define zeroext i1 @a(i32 %x)  nounwind {
5   %res = call {i32, i1} @llvm.umul.with.overflow.i32(i32 %x, i32 3)
6   %obil = extractvalue {i32, i1} %res, 1
7   ret i1 %obil
10 declare {i32, i1} @llvm.smul.with.overflow.i32(i32 %a, i32 %b)
11 define zeroext i1 @b(i32 %x)  nounwind {
12   %res = call {i32, i1} @llvm.smul.with.overflow.i32(i32 %x, i32 3)
13   %obil = extractvalue {i32, i1} %res, 1
14   ret i1 %obil