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

Commit dd20f38

Browse files
committed
Remove unused make_ti() and make_tu() functions
1 parent 37ddd42 commit dd20f38

File tree

1 file changed

+0
-14
lines changed

1 file changed

+0
-14
lines changed

int_types.h

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -100,20 +100,6 @@ typedef union {
100100
} s;
101101
} utwords;
102102

103-
static __inline ti_int make_ti(di_int h, di_int l) {
104-
twords r;
105-
r.s.high = (du_int)h;
106-
r.s.low = (du_int)l;
107-
return r.all;
108-
}
109-
110-
static __inline tu_int make_tu(du_int h, du_int l) {
111-
utwords r;
112-
r.s.high = h;
113-
r.s.low = l;
114-
return r.all;
115-
}
116-
117103
#endif // CRT_HAS_128BIT
118104

119105
#endif // INT_TYPES_H

0 commit comments

Comments
 (0)