about summary refs log tree commit diff
path: root/compiler/rustc_codegen_llvm/src/consts.rs
diff options
context:
space:
mode:
Diffstat (limited to 'compiler/rustc_codegen_llvm/src/consts.rs')
-rw-r--r--compiler/rustc_codegen_llvm/src/consts.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/rustc_codegen_llvm/src/consts.rs b/compiler/rustc_codegen_llvm/src/consts.rs
index fbbc1ecbbca..5d25e6cf03f 100644
--- a/compiler/rustc_codegen_llvm/src/consts.rs
+++ b/compiler/rustc_codegen_llvm/src/consts.rs
@@ -354,8 +354,6 @@ impl<'ll> CodegenCx<'ll, '_> {
             };
             let alloc = alloc.inner();
 
-            let val_llty = self.val_ty(v);
-
             let instance = Instance::mono(self.tcx, def_id);
             let ty = instance.ty(self.tcx, ty::ParamEnv::reveal_all());
             if !is_mutable {
@@ -366,6 +364,8 @@ impl<'ll> CodegenCx<'ll, '_> {
 
             let g = self.get_static_inner(def_id, llty);
 
+            let val_llty = self.val_ty(v);
+
             let g = if val_llty == llty {
                 g
             } else {