Skip to content

Commit 827d104

Browse files
committed
Auto merge of #128428 - matthiaskrgr:rollup-7weoxpo, r=matthiaskrgr
Rollup of 4 pull requests Successful merges: - #128151 (Structured suggestion for `extern crate foo` when `foo` isn't resolved in import) - #128162 (Cleanup sys module to match house style) - #128402 (Attribute checking simplifications) - #128417 (Add `f16` and `f128` math functions) r? `@ghost` `@rustbot` modify labels: rollup
2 parents 83dcdb3 + d900f21 commit 827d104

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

58 files changed

+4579
-579
lines changed

compiler/rustc_codegen_llvm/src/context.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -775,10 +775,10 @@ impl<'ll> CodegenCx<'ll, '_> {
775775
ifn!("llvm.debugtrap", fn() -> void);
776776
ifn!("llvm.frameaddress", fn(t_i32) -> ptr);
777777

778-
ifn!("llvm.powi.f16", fn(t_f16, t_i32) -> t_f16);
779-
ifn!("llvm.powi.f32", fn(t_f32, t_i32) -> t_f32);
780-
ifn!("llvm.powi.f64", fn(t_f64, t_i32) -> t_f64);
781-
ifn!("llvm.powi.f128", fn(t_f128, t_i32) -> t_f128);
778+
ifn!("llvm.powi.f16.i32", fn(t_f16, t_i32) -> t_f16);
779+
ifn!("llvm.powi.f32.i32", fn(t_f32, t_i32) -> t_f32);
780+
ifn!("llvm.powi.f64.i32", fn(t_f64, t_i32) -> t_f64);
781+
ifn!("llvm.powi.f128.i32", fn(t_f128, t_i32) -> t_f128);
782782

783783
ifn!("llvm.pow.f16", fn(t_f16, t_f16) -> t_f16);
784784
ifn!("llvm.pow.f32", fn(t_f32, t_f32) -> t_f32);

compiler/rustc_codegen_llvm/src/intrinsic.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,10 @@ fn get_simple_intrinsic<'ll>(
3535
sym::sqrtf64 => "llvm.sqrt.f64",
3636
sym::sqrtf128 => "llvm.sqrt.f128",
3737

38-
sym::powif16 => "llvm.powi.f16",
39-
sym::powif32 => "llvm.powi.f32",
40-
sym::powif64 => "llvm.powi.f64",
41-
sym::powif128 => "llvm.powi.f128",
38+
sym::powif16 => "llvm.powi.f16.i32",
39+
sym::powif32 => "llvm.powi.f32.i32",
40+
sym::powif64 => "llvm.powi.f64.i32",
41+
sym::powif128 => "llvm.powi.f128.i32",
4242

4343
sym::sinf16 => "llvm.sin.f16",
4444
sym::sinf32 => "llvm.sin.f32",

compiler/rustc_interface/src/passes.rs

+7-1
Original file line numberDiff line numberDiff line change
@@ -544,7 +544,13 @@ fn resolver_for_lowering_raw<'tcx>(
544544
let arenas = Resolver::arenas();
545545
let _ = tcx.registered_tools(()); // Uses `crate_for_resolver`.
546546
let (krate, pre_configured_attrs) = tcx.crate_for_resolver(()).steal();
547-
let mut resolver = Resolver::new(tcx, &pre_configured_attrs, krate.spans.inner_span, &arenas);
547+
let mut resolver = Resolver::new(
548+
tcx,
549+
&pre_configured_attrs,
550+
krate.spans.inner_span,
551+
krate.spans.inject_use_span,
552+
&arenas,
553+
);
548554
let krate = configure_and_expand(krate, &pre_configured_attrs, &mut resolver);
549555

550556
// Make sure we don't mutate the cstore from here on.

0 commit comments

Comments
 (0)