diff options
author | crux <crux@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-06-24 19:26:42 +0000 |
---|---|---|
committer | crux <crux@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-06-24 19:26:42 +0000 |
commit | 8a95ab857c0aa88461aa4f10944825c98f32d0df (patch) | |
tree | db94b2c1a07d5c04365806edf03c813ecba575c1 /gcc/tree.def | |
parent | 2323093ea57b891515a0792298d5e3998ee8218d (diff) | |
download | gcc-8a95ab857c0aa88461aa4f10944825c98f32d0df.tar.gz |
Vector conversions support
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@34680 138bc75d-0d04-0410-961f-82ee72b054a4
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 e3fb8b4962b..28c47d97a79 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; |