summaryrefslogtreecommitdiff
path: root/test/CodeGen/CellSPU/mul-with-overflow.ll
blob: c04e69e3e193da5bce22aa96ee7994977fb17204 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
; RUN: llc < %s -march=cellspu

declare {i16, i1} @llvm.smul.with.overflow.i16(i16 %a, i16 %b)
define zeroext i1 @a(i16 %x)  nounwind {
  %res = call {i16, i1} @llvm.smul.with.overflow.i16(i16 %x, i16 3)
  %obil = extractvalue {i16, i1} %res, 1
  ret i1 %obil
}

declare {i16, i1} @llvm.umul.with.overflow.i16(i16 %a, i16 %b)
define zeroext i1 @b(i16 %x)  nounwind {
  %res = call {i16, i1} @llvm.umul.with.overflow.i16(i16 %x, i16 3)
  %obil = extractvalue {i16, i1} %res, 1
  ret i1 %obil
}