aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Tromey <tromey@redhat.com>2008-08-24 18:01:15 +0000
committerTom Tromey <tromey@redhat.com>2008-08-24 18:01:15 +0000
commit803e109716e0c30157ef2bd8e446e780e1f70a02 (patch)
tree7112a9eb5dbc47de190f2ea4af7d8c612b6da8f2 /gdb/target-descriptions.c
parentgdb: (diff)
downloadbinutils-gdb-803e109716e0c30157ef2bd8e446e780e1f70a02.tar.gz
binutils-gdb-803e109716e0c30157ef2bd8e446e780e1f70a02.tar.bz2
binutils-gdb-803e109716e0c30157ef2bd8e446e780e1f70a02.zip
* rs6000-tdep.c (rs6000_builtin_type_vec128): Don't use
TYPE_FLAGS. * features/rs6000/powerpc-vsx32l.c (initialize_tdesc_powerpc_vsx32l): Update. * features/rs6000/powerpc-vsx32.c (initialize_tdesc_powerpc_vsx32): Update. * features/rs6000/powerpc-vsx64.c (initialize_tdesc_powerpc_vsx64): Update. * features/rs6000/powerpc-vsx64l.c (initialize_tdesc_powerpc_vsx64l): Update. * target-descriptions.c (maint_print_c_tdesc_cmd): Emit TYPE_VECTOR, not TYPE_FLAGS.
Diffstat (limited to 'gdb/target-descriptions.c')
-rw-r--r--gdb/target-descriptions.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/target-descriptions.c b/gdb/target-descriptions.c
index 95bf7c9724f..c77acb6de86 100644
--- a/gdb/target-descriptions.c
+++ b/gdb/target-descriptions.c
@@ -1096,7 +1096,7 @@ maint_print_c_tdesc_cmd (char *args, int from_tty)
}
if (TYPE_VECTOR (type))
printf_unfiltered
- (" TYPE_FLAGS (type) |= TYPE_FLAG_VECTOR;\n");
+ (" TYPE_VECTOR (type) = 1;\n");
break;
default:
error (_("C output is not supported type \"%s\"."), TYPE_NAME (type));