Skip to content

Commit

Permalink
fix unused variable
Browse files Browse the repository at this point in the history
  • Loading branch information
Manuel Drehwald committed Mar 1, 2023
1 parent c58f3dc commit 70a710b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion compiler/rustc_codegen_llvm/src/back/write.rs
Original file line number Diff line number Diff line change
Expand Up @@ -599,7 +599,7 @@ pub(crate) unsafe fn extract_return_type<'a>(
) -> &'a Value {
//let llmod = module.module_llvm.llmod();
let context = llvm::LLVMGetModuleContext(llmod);
let f_type = LLVMTypeOf(fnc);
let _f_type = LLVMTypeOf(fnc);
//dbg!("Unpacking", fnc_name.clone());
//dbg!("From: ", f_type, " into ", u_type);

Expand Down

0 comments on commit 70a710b

Please sign in to comment.