about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorbjorn3 <17426603+bjorn3@users.noreply.github.com>2023-07-22 11:11:45 +0000
committerbjorn3 <17426603+bjorn3@users.noreply.github.com>2023-07-22 11:11:45 +0000
commit4eabaf331ff80eb7310e813bee32daa05256526e (patch)
treeeb2bf296a94059c22c5d87faeb28238197d3a494 /src
parenta8a722f2116961bd852604ab0dfddabcb80575dc (diff)
downloadrust-4eabaf331ff80eb7310e813bee32daa05256526e.tar.gz
rust-4eabaf331ff80eb7310e813bee32daa05256526e.zip
Rustup to rustc 1.73.0-nightly (0308df23e 2023-07-21)
Diffstat (limited to 'src')
-rw-r--r--src/driver/jit.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/driver/jit.rs b/src/driver/jit.rs
index 41e24acefbe..3ea38842148 100644
--- a/src/driver/jit.rs
+++ b/src/driver/jit.rs
@@ -114,9 +114,9 @@ pub(crate) fn run_jit(tcx: TyCtxt<'_>, backend_config: BackendConfig) -> ! {
         .iter()
         .map(|cgu| cgu.items_in_deterministic_order(tcx).into_iter())
         .flatten()
-        .collect::<FxHashMap<_, (_, _)>>()
+        .collect::<FxHashMap<_, _>>()
         .into_iter()
-        .collect::<Vec<(_, (_, _))>>();
+        .collect::<Vec<(_, _)>>();
 
     tcx.sess.time("codegen mono items", || {
         super::predefine_mono_items(tcx, &mut jit_module, &mono_items);