Skip to content

Commit be9ffea

Browse files
committed
ditto
1 parent 0c3c657 commit be9ffea

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

source/mir/utility.d

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -536,6 +536,7 @@ ExtMulResult!U extMul(U)(in U a, in U b) @nogc nothrow pure @safe
536536
%agg1 = insertvalue [2 x i64] undef, i64 %l, 0
537537
%agg2 = insertvalue [2 x i64] %agg1, i64 %h, 1
538538
ret [2 x i64] %agg2`, ulong[2])(a, b);
539+
return ExtMulResult!U(r[0], r[1]);
539540
}
540541
else
541542
static if (false)
@@ -550,8 +551,8 @@ ExtMulResult!U extMul(U)(in U a, in U b) @nogc nothrow pure @safe
550551
%agg1 = insertvalue [2 x i128] undef, i128 %l, 0
551552
%agg2 = insertvalue [2 x i128] %agg1, i128 %h, 1
552553
ret [2 x i128] %agg2`, ucent[2])(a, b);
554+
return ExtMulResult!U(r[0], r[1]);
553555
}
554-
return ExtMulResult!U(r[0], r[1]);
555556
}
556557
else
557558
version(D_InlineAsm_X86_64)

0 commit comments

Comments
 (0)