diff options
author | Tom Tromey <tom@tromey.com> | 2023-01-31 13:30:54 -0700 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2023-02-13 15:21:08 -0700 |
commit | b27556e3c10e197cc31021649a6113bb305b970e (patch) | |
tree | 9de98f1568e25b39a573964b113b380428b1b9b1 /gdb/eval.c | |
parent | b64e260290108f8eb4f7a75f80a8355448aef7e4 (diff) | |
download | gdb-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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); |