Remove use of mem::uninitialized in code_gen crate

This commit is contained in:
Lzu Tao 2019-07-05 19:26:25 +00:00
parent 42c3d37145
commit 7646d4935b
1 changed files with 1 additions and 2 deletions

View File

@ -170,8 +170,7 @@ impl CodegenCx<'ll, 'tcx> {
pub fn const_get_real(&self, v: &'ll Value) -> Option<(f64, bool)> {
unsafe {
if self.is_const_real(v) {
#[allow(deprecated)]
let mut loses_info: llvm::Bool = ::std::mem::uninitialized();
let mut loses_info: llvm::Bool = 0;
let r = llvm::LLVMConstRealGetDouble(v, &mut loses_info);
let loses_info = if loses_info == 1 { true } else { false };
Some((r, loses_info))