Skip to content

Commit 72e2e80

Browse files
committed
single commit with new opt2 impl
1 parent 5033263 commit 72e2e80

File tree

2 files changed

+0
-8
lines changed

2 files changed

+0
-8
lines changed

compiler/rustc_codegen_llvm/src/context.rs

-4
Original file line numberDiff line numberDiff line change
@@ -737,10 +737,6 @@ impl<'ll, 'tcx> MiscCodegenMethods<'tcx> for CodegenCx<'ll, 'tcx> {
737737
}
738738
}
739739

740-
// TODO: Manuel: I think we can drop this and construct the empty vec on the fly?
741-
fn create_autodiff(&self) -> Vec<Self::Function> {
742-
return vec![];
743-
}
744740
}
745741

746742
impl<'ll> CodegenCx<'ll, '_> {

src/bootstrap/src/core/build_steps/compile.rs

-4
Original file line numberDiff line numberDiff line change
@@ -1068,10 +1068,6 @@ pub fn rustc_cargo(
10681068
// <https://rust-lang.zulipchat.com/#narrow/stream/131828-t-compiler/topic/Internal.20lint.20for.20raw.20.60print!.60.20and.20.60println!.60.3F>.
10691069
cargo.rustflag("-Zon-broken-pipe=kill");
10701070

1071-
//if builder.config.llvm_enzyme {
1072-
// cargo.rustflag("-l").rustflag("Enzyme-19");
1073-
//}
1074-
10751071
// We currently don't support cross-crate LTO in stage0. This also isn't hugely necessary
10761072
// and may just be a time sink.
10771073
if compiler.stage != 0 {

0 commit comments

Comments
 (0)