From ed8f822aaf4a6d0614ce35522f646a784c479881 Mon Sep 17 00:00:00 2001 From: Pierre Muller Date: Mon, 19 Aug 2002 12:08:07 +0000 Subject: 2002-08-19 Pierre Muller * p-valprint.c (pascal_val_print): Add support for TYPE_CODE_FLAGS. --- gdb/p-valprint.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'gdb/p-valprint.c') diff --git a/gdb/p-valprint.c b/gdb/p-valprint.c index 06a8216..747223c 100644 --- a/gdb/p-valprint.c +++ b/gdb/p-valprint.c @@ -36,6 +36,7 @@ #include "target.h" #include "annotate.h" #include "p-lang.h" +#include "c-lang.h" #include "cp-abi.h" @@ -72,6 +73,10 @@ pascal_val_print (struct type *type, char *valaddr, int embedded_offset, CHECK_TYPEDEF (type); switch (TYPE_CODE (type)) { + case TYPE_CODE_FLAGS: + return c_val_print (type, valaddr, embedded_offset, address, stream, + format, deref_ref, recurse, pretty); + case TYPE_CODE_ARRAY: if (TYPE_LENGTH (type) > 0 && TYPE_LENGTH (TYPE_TARGET_TYPE (type)) > 0) { -- cgit v1.1