aboutsummaryrefslogtreecommitdiff
path: root/gdb/eval.c
diff options
context:
space:
mode:
authorTom Tromey <tom@tromey.com>2023-01-31 13:30:54 -0700
committerTom Tromey <tom@tromey.com>2023-02-13 15:21:08 -0700
commitb27556e3c10e197cc31021649a6113bb305b970e (patch)
tree9de98f1568e25b39a573964b113b380428b1b9b1 /gdb/eval.c
parentb64e260290108f8eb4f7a75f80a8355448aef7e4 (diff)
downloadgdb-b27556e3c10e197cc31021649a6113bb305b970e.zip
gdb-b27556e3c10e197cc31021649a6113bb305b970e.tar.gz
gdb-b27556e3c10e197cc31021649a6113bb305b970e.tar.bz2
Turn allocate_optimized_out_value into static "constructor"
This turns allocate_optimized_out_value into a static "constructor" of value. Approved-By: Simon Marchi <simon.marchi@efficios.com>
Diffstat (limited to 'gdb/eval.c')
-rw-r--r--gdb/eval.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/eval.c b/gdb/eval.c
index 5f8d294..bb72043 100644
--- a/gdb/eval.c
+++ b/gdb/eval.c
@@ -2855,7 +2855,7 @@ var_value_operation::evaluate_for_sizeof (struct expression *exp,
return value_zero (size_type, not_lval);
else if (is_dynamic_type (type->index_type ())
&& type->bounds ()->high.kind () == PROP_UNDEFINED)
- return allocate_optimized_out_value (size_type);
+ return value::allocate_optimized_out (size_type);
}
}
return evaluate_subexp_for_sizeof_base (exp, type);