Skip to content

Commit a4b68d4

Browse files
committed
Explain why we can't use the compiler-rt functions or write them in C
1 parent 4c4423f commit a4b68d4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

text/0000-int128.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ fn __udivti3(a: u128, b: u128) -> u128;
6060
fn __umodti3(a: u128, b: u128) -> u128;
6161
```
6262

63-
Implementations of these functions will be written in Rust and will be included in libcore.
63+
Implementations of these functions will be written in Rust and will be included in libcore. Note that it is not possible to write these functions in C or use the existing implementations in `compiler-rt` since the `__int128` type is not available in C on 32-bit platforms.
6464

6565
## Modifications to libcore
6666

0 commit comments

Comments
 (0)