Skip to content
This repository was archived by the owner on Mar 31, 2025. It is now read-only.

Commit aa5854c

Browse files
committed
Backports from compiler-rt upstream
1 parent 38942e9 commit aa5854c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

int_types.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,8 +102,8 @@ typedef union {
102102

103103
static __inline ti_int make_ti(di_int h, di_int l) {
104104
twords r;
105-
r.s.high = h;
106-
r.s.low = l;
105+
r.s.high = (du_int)h;
106+
r.s.low = (du_int)l;
107107
return r.all;
108108
}
109109

0 commit comments

Comments
 (0)