From 0001eddb933ff9e5beeb8dd00c507b7abbd85e94 Mon Sep 17 00:00:00 2001 From: Nicholas Nethercote Date: Wed, 20 Sep 2023 07:23:42 +1000 Subject: [PATCH] Inline and remove `DroplessArena::grow_and_alloc`. It has a single callsite. --- compiler/rustc_arena/src/lib.rs | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/compiler/rustc_arena/src/lib.rs b/compiler/rustc_arena/src/lib.rs index d23ff64d667..0712f1efd64 100644 --- a/compiler/rustc_arena/src/lib.rs +++ b/compiler/rustc_arena/src/lib.rs @@ -463,12 +463,6 @@ impl DroplessArena { self.alloc_raw_without_grow(layout).unwrap() } - #[inline(never)] - #[cold] - fn grow_and_alloc(&self) -> *mut u8 { - self.grow_and_alloc_raw(Layout::new::()) - } - /// Allocates a byte slice with specified layout from the current memory /// chunk. Returns `None` if there is no free space left to satisfy the /// request. @@ -517,7 +511,7 @@ impl DroplessArena { } else { // No free space left. Allocate a new chunk to satisfy the request. // On failure the grow will panic or abort. - self.grow_and_alloc::() + self.grow_and_alloc_raw(Layout::new::()) } as *mut T; unsafe {