Skip to content

Commit a02aecb

Browse files
authored
Rollup merge of #74623 - lcnr:polymorphize-functions, r=eddyb
polymorphize GlobalAlloc::Function this sadly does not change #74614 r? @eddyb
2 parents a816345 + 40b6bcc commit a02aecb

File tree

2 files changed

+14
-1
lines changed

2 files changed

+14
-1
lines changed

src/librustc_codegen_llvm/common.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@ impl ConstMethods<'tcx> for CodegenCx<'ll, 'tcx> {
257257
(value, AddressSpace::DATA)
258258
}
259259
GlobalAlloc::Function(fn_instance) => (
260-
self.get_fn_addr(fn_instance),
260+
self.get_fn_addr(fn_instance.polymorphize(self.tcx)),
261261
self.data_layout().instruction_address_space,
262262
),
263263
GlobalAlloc::Static(def_id) => {
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
// run-pass
2+
fn fop<T>() {}
3+
4+
fn bar<T>() -> &'static fn() {
5+
&(fop::<T> as fn())
6+
}
7+
pub const FN: &'static fn() = &(fop::<i32> as fn());
8+
9+
fn main() {
10+
bar::<u32>();
11+
bar::<i32>();
12+
(FN)();
13+
}

0 commit comments

Comments
 (0)