We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a533ae9 commit 4585619Copy full SHA for 4585619
src/lib.rs
@@ -30,6 +30,11 @@
30
)
31
)]
32
33
+// We use `u128` in a whole bunch of places which we currently agree with the
34
+// compiler on ABIs and such, so we should be "good enough" for now and changes
35
+// to the `u128` ABI will be reflected here.
36
+#![allow(improper_ctypes)]
37
+
38
// We disable #[no_mangle] for tests so that we can verify the test results
39
// against the native compiler-rt implementations of the builtins.
40
0 commit comments