From 92b05db7619fb02f2265ffca42d2aa8d78646d7d Mon Sep 17 00:00:00 2001 From: Maybe Waffle Date: Thu, 18 Aug 2022 22:21:53 +0400 Subject: Do not use void pointer for `ptr_mask` intrinsic I couldn't find where exactly it's documented, but apperantly pointers to void type are invalid in llvm - void is only allowed as a return type of functions. --- compiler/rustc_codegen_llvm/src/context.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'compiler/rustc_codegen_llvm/src') diff --git a/compiler/rustc_codegen_llvm/src/context.rs b/compiler/rustc_codegen_llvm/src/context.rs index bbb6bacc452..67ffc7cb951 100644 --- a/compiler/rustc_codegen_llvm/src/context.rs +++ b/compiler/rustc_codegen_llvm/src/context.rs @@ -644,7 +644,6 @@ impl<'ll> CodegenCx<'ll, '_> { let i8p = self.type_i8p(); let void = self.type_void(); - let voidp = self.type_ptr_to(void); let i1 = self.type_i1(); let t_i8 = self.type_i8(); let t_i16 = self.type_i16(); @@ -888,7 +887,7 @@ impl<'ll> CodegenCx<'ll, '_> { ifn!("llvm.dbg.value", fn(t_metadata, t_i64, t_metadata) -> void); } - ifn!("llvm.ptrmask", fn(voidp, t_isize) -> voidp); + ifn!("llvm.ptrmask", fn(i8p, t_isize) -> i8p); None } -- cgit 1.4.1-3-g733a5