1; RUN: llc < %s -mtriple=x86_64-apple-darwin | FileCheck %s
2%0 = type { i64, i64 }
3%1 = type { i128, i1 }
4
5define %0 @x(i64 %a.coerce0, i64 %a.coerce1, i64 %b.coerce0, i64 %b.coerce1) nounwind uwtable ssp {
6; CHECK: x
7entry:
8  %tmp16 = zext i64 %a.coerce0 to i128
9  %tmp11 = zext i64 %a.coerce1 to i128
10  %tmp12 = shl nuw i128 %tmp11, 64
11  %ins14 = or i128 %tmp12, %tmp16
12  %tmp6 = zext i64 %b.coerce0 to i128
13  %tmp3 = zext i64 %b.coerce1 to i128
14  %tmp4 = shl nuw i128 %tmp3, 64
15  %ins = or i128 %tmp4, %tmp6
16  %0 = tail call %1 @llvm.smul.with.overflow.i128(i128 %ins14, i128 %ins)
17; CHECK: callq   ___muloti4
18  %1 = extractvalue %1 %0, 0
19  %2 = extractvalue %1 %0, 1
20  br i1 %2, label %overflow, label %nooverflow
21
22overflow:                                         ; preds = %entry
23  tail call void @llvm.trap()
24  unreachable
25
26nooverflow:                                       ; preds = %entry
27  %tmp20 = trunc i128 %1 to i64
28  %tmp21 = insertvalue %0 undef, i64 %tmp20, 0
29  %tmp22 = lshr i128 %1, 64
30  %tmp23 = trunc i128 %tmp22 to i64
31  %tmp24 = insertvalue %0 %tmp21, i64 %tmp23, 1
32  ret %0 %tmp24
33}
34
35declare %1 @llvm.smul.with.overflow.i128(i128, i128) nounwind readnone
36
37declare void @llvm.trap() nounwind
38