We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4cd65a5 commit bef14fdCopy full SHA for bef14fd
compiler/rustc_codegen_llvm/src/back/lto.rs
@@ -600,7 +600,8 @@ fn enable_autodiff_settings(ad: &[config::AutoDiff]) {
600
llvm::set_print_type(true);
601
}
602
config::AutoDiff::PrintTAFn(fun) => {
603
- llvm::set_print_type_fun(&fun);
+ llvm::set_print_type(true); // Enable general type printing
604
+ llvm::set_print_type_fun(&fun); // Set specific function to analyze
605
606
config::AutoDiff::Inline => {
607
llvm::set_inline(true);
0 commit comments