Skip to content

Commit b0a5801

Browse files
committed
Use immediate_backend_type when reading from a const alloc
1 parent 2b399b5 commit b0a5801

File tree

2 files changed

+16
-1
lines changed

2 files changed

+16
-1
lines changed

compiler/rustc_codegen_ssa/src/mir/operand.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ impl<'a, 'tcx, V: CodegenObject> OperandRef<'tcx, V> {
155155
Abi::Scalar(s @ abi::Scalar::Initialized { .. }) => {
156156
let size = s.size(bx);
157157
assert_eq!(size, layout.size, "abi::Scalar size does not match layout size");
158-
let val = read_scalar(offset, size, s, bx.backend_type(layout));
158+
let val = read_scalar(offset, size, s, bx.immediate_backend_type(layout));
159159
OperandRef { val: OperandValue::Immediate(val), layout }
160160
}
161161
Abi::ScalarPair(
+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
// This is a regression test for https://github.com/rust-lang/rust/issues/118047
2+
// build-pass
3+
// compile-flags: -Zmir-opt-level=0 -Zmir-enable-passes=+DataflowConstProp
4+
5+
#![crate_type = "lib"]
6+
7+
pub struct State {
8+
inner: bool
9+
}
10+
11+
pub fn make() -> State {
12+
State {
13+
inner: true
14+
}
15+
}

0 commit comments

Comments
 (0)