aboutsummaryrefslogtreecommitdiff
path: root/gdb/gdbtypes.h
diff options
context:
space:
mode:
authorAndrew Cagney <cagney@redhat.com>2002-08-10 05:12:40 +0000
committerAndrew Cagney <cagney@redhat.com>2002-08-10 05:12:40 +0000
commitb063e7a269b0493ce192d76a85c41fe16210dcd4 (patch)
treea5c94c007f7c43abd8f84d792954240d29db2c17 /gdb/gdbtypes.h
parenta7e3c2ad4b6733e3011e00d214ec83139fa3c3d2 (diff)
downloadgdb-b063e7a269b0493ce192d76a85c41fe16210dcd4.zip
gdb-b063e7a269b0493ce192d76a85c41fe16210dcd4.tar.gz
gdb-b063e7a269b0493ce192d76a85c41fe16210dcd4.tar.bz2
2002-08-10 Andrew Cagney <cagney@redhat.com>
Elena Zannoni <ezannoni@redhat.com> Martin M. Hunt <hunt@redhat.com> * gdbtypes.c (build_builtin_type_vec128): Set the vector bit. (build_builtin_type_vec128i): Set the vector bit. * gdbtypes.h (builtin_type_vec64, builtin_type_vec64i): Declare. * gdbtypes.c (builtin_type_vec64, builtin_type_vec64i): Define. (build_builtin_type_vec64): New function. (build_builtin_type_vec64i): New function. (build_gdbtypes): Initialize builtin_type_vec64 and builtin_type_vec64i.
Diffstat (limited to 'gdb/gdbtypes.h')
-rw-r--r--gdb/gdbtypes.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/gdb/gdbtypes.h b/gdb/gdbtypes.h
index b67c54f..5c41398 100644
--- a/gdb/gdbtypes.h
+++ b/gdb/gdbtypes.h
@@ -952,6 +952,10 @@ extern struct type *builtin_type_v8hi;
extern struct type *builtin_type_v4hi;
extern struct type *builtin_type_v2si;
+/* Type for 64 bit vectors. */
+extern struct type *builtin_type_vec64;
+extern struct type *builtin_type_vec64i;
+
/* Type for 128 bit vectors. */
extern struct type *builtin_type_vec128;
extern struct type *builtin_type_vec128i;