diff options
author | Bernd Schmidt <bernds@cygnus.co.uk> | 2000-06-24 19:26:42 +0000 |
---|---|---|
committer | Bernd Schmidt <crux@gcc.gnu.org> | 2000-06-24 19:26:42 +0000 |
commit | 0b4565c9d8b4b7530558beef1b9284b88848b2fa (patch) | |
tree | db94b2c1a07d5c04365806edf03c813ecba575c1 /gcc/tree.def | |
parent | cf036e712cdd515d1fed36a58023926e0dabb1aa (diff) | |
download | gcc-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.def | 4 |
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; |