From 1f2c18cdbd755afc722fa2a38c97a6dc6d134453 Mon Sep 17 00:00:00 2001 From: Camille GILLOT Date: Fri, 8 Nov 2019 23:19:46 +0100 Subject: [PATCH] Rename in librustc_codegen_llvm. --- src/librustc_codegen_llvm/consts.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/librustc_codegen_llvm/consts.rs b/src/librustc_codegen_llvm/consts.rs index fd7054a5a0ad..bcf0154e3f87 100644 --- a/src/librustc_codegen_llvm/consts.rs +++ b/src/librustc_codegen_llvm/consts.rs @@ -88,9 +88,9 @@ pub fn codegen_static_initializer( let static_ = cx.tcx.const_eval(param_env.and(cid))?; let alloc = match static_.val { - ConstValue::ByRef { + ty::ConstKind::Value(ConstValue::ByRef { alloc, offset, - } if offset.bytes() == 0 => { + }) if offset.bytes() == 0 => { alloc }, _ => bug!("static const eval returned {:#?}", static_),