aboutsummaryrefslogtreecommitdiff
path: root/gcc/tree.def
diff options
context:
space:
mode:
authorBernd Schmidt <bernds@cygnus.co.uk>2000-06-24 19:26:42 +0000
committerBernd Schmidt <crux@gcc.gnu.org>2000-06-24 19:26:42 +0000
commit0b4565c9d8b4b7530558beef1b9284b88848b2fa (patch)
treedb94b2c1a07d5c04365806edf03c813ecba575c1 /gcc/tree.def
parentcf036e712cdd515d1fed36a58023926e0dabb1aa (diff)
downloadgcc-0b4565c9d8b4b7530558beef1b9284b88848b2fa.zip
gcc-0b4565c9d8b4b7530558beef1b9284b88848b2fa.tar.gz
gcc-0b4565c9d8b4b7530558beef1b9284b88848b2fa.tar.bz2
Vector conversions support
From-SVN: r34680
Diffstat (limited to 'gcc/tree.def')
-rw-r--r--gcc/tree.def4
1 files changed, 4 insertions, 0 deletions
diff --git a/gcc/tree.def b/gcc/tree.def
index e3fb8b4..28c47d9 100644
--- a/gcc/tree.def
+++ b/gcc/tree.def
@@ -150,6 +150,10 @@ DEFTREECODE (REAL_TYPE, "real_type", 't', 0)
of the real and imaginary parts. */
DEFTREECODE (COMPLEX_TYPE, "complex_type", 't', 0)
+/* Vector types. The TREE_TYPE field is the data type of the vector
+ elements. */
+DEFTREECODE (VECTOR_TYPE, "vector_type", 't', 0)
+
/* C enums. The type node looks just like an INTEGER_TYPE node.
The symbols for the values of the enum type are defined by
CONST_DECL nodes, but the type does not point to them;