summaryrefslogtreecommitdiffstats
path: root/vendor/compiler_builtins/src/float
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:03 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:03 +0000
commit64d98f8ee037282c35007b64c2649055c56af1db (patch)
tree5492bcf97fce41ee1c0b1cc2add283f3e66cdab0 /vendor/compiler_builtins/src/float
parentAdding debian version 1.67.1+dfsg1-1. (diff)
downloadrustc-64d98f8ee037282c35007b64c2649055c56af1db.tar.xz
rustc-64d98f8ee037282c35007b64c2649055c56af1db.zip
Merging upstream version 1.68.2+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'vendor/compiler_builtins/src/float')
-rw-r--r--vendor/compiler_builtins/src/float/mod.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/vendor/compiler_builtins/src/float/mod.rs b/vendor/compiler_builtins/src/float/mod.rs
index 01a5504d5..fdbe9dde3 100644
--- a/vendor/compiler_builtins/src/float/mod.rs
+++ b/vendor/compiler_builtins/src/float/mod.rs
@@ -26,10 +26,10 @@ pub(crate) trait Float:
+ ops::Div<Output = Self>
+ ops::Rem<Output = Self>
{
- /// A uint of the same with as the float
+ /// A uint of the same width as the float
type Int: Int;
- /// A int of the same with as the float
+ /// A int of the same width as the float
type SignedInt: Int;
/// An int capable of containing the exponent bits plus a sign bit. This is signed.