about summary refs log tree commit diff
path: root/compiler/rustc_codegen_llvm
diff options
context:
space:
mode:
authorMaybe Waffle <waffle.lapkin@gmail.com>2022-06-16 19:41:40 +0400
committerMaybe Waffle <waffle.lapkin@gmail.com>2022-06-16 19:53:59 +0400
commit7c360dc117d554a11f7193505da0835c4b890c6f (patch)
tree214c085729d9636756ebc16e0f6b17e1b5802629 /compiler/rustc_codegen_llvm
parent392d2728683f140f6125732240e462c43c5caff4 (diff)
downloadrust-7c360dc117d554a11f7193505da0835c4b890c6f.tar.gz
rust-7c360dc117d554a11f7193505da0835c4b890c6f.zip
Move/rename `lazy::{OnceCell, Lazy}` to `cell::{OnceCell, LazyCell}`
Diffstat (limited to 'compiler/rustc_codegen_llvm')
-rw-r--r--compiler/rustc_codegen_llvm/src/debuginfo/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_codegen_llvm/src/debuginfo/mod.rs b/compiler/rustc_codegen_llvm/src/debuginfo/mod.rs
index 0910e7c94ea..71699b5cf38 100644
--- a/compiler/rustc_codegen_llvm/src/debuginfo/mod.rs
+++ b/compiler/rustc_codegen_llvm/src/debuginfo/mod.rs
@@ -36,9 +36,9 @@ use rustc_target::abi::Size;
 
 use libc::c_uint;
 use smallvec::SmallVec;
+use std::cell::OnceCell;
 use std::cell::RefCell;
 use std::iter;
-use std::lazy::OnceCell;
 use tracing::debug;
 
 mod create_scope_map;