mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 07:14:28 +00:00
(try to) fix cranelift
This commit is contained in:
parent
585141b219
commit
461b2f83f3
@ -2,6 +2,7 @@
|
|||||||
|
|
||||||
use rustc_span::DUMMY_SP;
|
use rustc_span::DUMMY_SP;
|
||||||
|
|
||||||
|
use rustc_ast::Mutability;
|
||||||
use rustc_data_structures::fx::{FxHashMap, FxHashSet};
|
use rustc_data_structures::fx::{FxHashMap, FxHashSet};
|
||||||
use rustc_errors::ErrorReported;
|
use rustc_errors::ErrorReported;
|
||||||
use rustc_middle::middle::codegen_fn_attrs::CodegenFnAttrFlags;
|
use rustc_middle::middle::codegen_fn_attrs::CodegenFnAttrFlags;
|
||||||
@ -175,6 +176,7 @@ pub(crate) fn codegen_const_value<'tcx>(
|
|||||||
let mut alloc = Allocation::from_bytes(
|
let mut alloc = Allocation::from_bytes(
|
||||||
std::iter::repeat(0).take(size.bytes_usize()).collect::<Vec<u8>>(),
|
std::iter::repeat(0).take(size.bytes_usize()).collect::<Vec<u8>>(),
|
||||||
align,
|
align,
|
||||||
|
Mutability::Not,
|
||||||
);
|
);
|
||||||
alloc.write_scalar(fx, alloc_range(Size::ZERO, size), x.into()).unwrap();
|
alloc.write_scalar(fx, alloc_range(Size::ZERO, size), x.into()).unwrap();
|
||||||
let alloc = fx.tcx.intern_const_alloc(alloc);
|
let alloc = fx.tcx.intern_const_alloc(alloc);
|
||||||
|
Loading…
Reference in New Issue
Block a user