aboutsummaryrefslogtreecommitdiffstats
path: root/insns.def
diff options
context:
space:
mode:
Diffstat (limited to 'insns.def')
-rw-r--r--insns.def6
1 files changed, 3 insertions, 3 deletions
diff --git a/insns.def b/insns.def
index 8be204ceaa..49522974dc 100644
--- a/insns.def
+++ b/insns.def
@@ -1247,10 +1247,10 @@ opt_case_dispatch
}
}
else {
- struct opt_case_dispatch_i_arg arg = {
- key, -1
- };
+ struct opt_case_dispatch_i_arg arg;
+ arg.obj = key;
+ arg.label = -1;
st_foreach(RHASH_TBL(hash), opt_case_dispatch_i, (st_data_t)&arg);
if (arg.label != -1) {