diff options
Diffstat (limited to 'gdb/language.c')
-rw-r--r-- | gdb/language.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/gdb/language.c b/gdb/language.c index f82c5b1..c768971 100644 --- a/gdb/language.c +++ b/gdb/language.c @@ -874,6 +874,16 @@ language_string_char_type (const struct language_defn *la, /* See language.h. */ +struct value * +language_defn::value_string (struct gdbarch *gdbarch, + const char *ptr, ssize_t len) const +{ + struct type *type = language_string_char_type (this, gdbarch); + return value_cstring (ptr, len, type); +} + +/* See language.h. */ + struct type * language_bool_type (const struct language_defn *la, struct gdbarch *gdbarch) |