diff src/vim9execute.c @ 25533:df39041f13ed v8.2.3303

patch 8.2.3303: some structures could be smaller Commit: https://github.com/vim/vim/commit/3276f5846f7ad61f55175959ac21c1b4cf595352 Author: Dominique Pelle <dominique.pelle@gmail.com> Date: Sat Aug 7 12:44:41 2021 +0200 patch 8.2.3303: some structures could be smaller Problem: Some structures could be smaller. Solution: Rearrange members to reduce size. (Dominique Pell?, closes https://github.com/vim/vim/issues/8725)
author Bram Moolenaar <Bram@vim.org>
date Sat, 07 Aug 2021 12:45:05 +0200
parents a8f526c9b172
children 2ae1d5a4ae5c
line wrap: on
line diff
--- a/src/vim9execute.c
+++ b/src/vim9execute.c
@@ -85,8 +85,8 @@ struct ectx_S {
 
     garray_T	ec_trystack;	// stack of trycmd_T values
 
+    isn_T	*ec_instr;	// array with instructions
     int		ec_dfunc_idx;	// current function index
-    isn_T	*ec_instr;	// array with instructions
     int		ec_iidx;	// index in ec_instr: instruction to execute
 
     garray_T	ec_funcrefs;	// partials that might be a closure