about summary refs log tree commit diff
path: root/compiler/rustc_query_impl/src
diff options
context:
space:
mode:
authorMatthias Krüger <matthias.krueger@famsik.de>2023-04-06 18:42:59 +0200
committerGitHub <noreply@github.com>2023-04-06 18:42:59 +0200
commit4ecfb7fc04ddb3dd03e0794d54ed7595ad7fe696 (patch)
treee7739b3b0e55d59e1c8d059739c942f188b8e91a /compiler/rustc_query_impl/src
parentdbc2941c15db37bc4da07ae1df52045efe0f85c9 (diff)
parent5cb23e4a439df21e90d5a4789b5d61b2586ee2d2 (diff)
downloadrust-4ecfb7fc04ddb3dd03e0794d54ed7595ad7fe696.tar.gz
rust-4ecfb7fc04ddb3dd03e0794d54ed7595ad7fe696.zip
Rollup merge of #109984 - scottmcm:less-float, r=Nilstrieb
Remove f32 & f64 from MemDecoder/MemEncoder

r? ```@Nilstrieb```
since they said (maybe joked) on discord that it's a bug if the compiler uses f32 anywhere 🙃
Diffstat (limited to 'compiler/rustc_query_impl/src')
-rw-r--r--compiler/rustc_query_impl/src/on_disk_cache.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/compiler/rustc_query_impl/src/on_disk_cache.rs b/compiler/rustc_query_impl/src/on_disk_cache.rs
index 35b7e5919e4..9aa8231dcda 100644
--- a/compiler/rustc_query_impl/src/on_disk_cache.rs
+++ b/compiler/rustc_query_impl/src/on_disk_cache.rs
@@ -1046,8 +1046,6 @@ impl<'a, 'tcx> Encoder for CacheEncoder<'a, 'tcx> {
         emit_i8(i8);
 
         emit_bool(bool);
-        emit_f64(f64);
-        emit_f32(f32);
         emit_char(char);
         emit_str(&str);
         emit_raw_bytes(&[u8]);