Skip to content

Commit 402cc35

Browse files
oli-obkcuviper
authored andcommitted
Monomorphize constants before inspecting them
(cherry picked from commit c7428d5)
1 parent 5905d9c commit 402cc35

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

compiler/rustc_codegen_ssa/src/mir/constant.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ impl<'a, 'tcx, Bx: BuilderMethods<'a, 'tcx>> FunctionCx<'a, 'tcx, Bx> {
6565
&self,
6666
constant: &mir::Constant<'tcx>,
6767
) -> Result<Option<ty::ValTree<'tcx>>, ErrorHandled> {
68-
let uv = match constant.literal {
68+
let uv = match self.monomorphize(constant.literal) {
6969
mir::ConstantKind::Unevaluated(uv, _) => uv.shrink(),
7070
mir::ConstantKind::Ty(c) => match c.kind() {
7171
// A constant that came from a const generic but was then used as an argument to old-style

tests/ui/simd/shuffle.rs

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
//run-pass
1+
// run-pass
2+
// revisions: opt noopt
3+
//[noopt] compile-flags: -Copt-level=0
4+
//[opt] compile-flags: -O
25
#![feature(repr_simd, platform_intrinsics)]
36
#![allow(incomplete_features)]
47
#![feature(adt_const_params)]

0 commit comments

Comments
 (0)