diff options
Diffstat (limited to 'contrib/gcc/tree.def')
-rw-r--r-- | contrib/gcc/tree.def | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/contrib/gcc/tree.def b/contrib/gcc/tree.def index 39ea31c033bc..9cfe139ac571 100644 --- a/contrib/gcc/tree.def +++ b/contrib/gcc/tree.def @@ -269,6 +269,9 @@ DEFTREECODE (REAL_CST, "real_cst", 'c', 3) Also there is TREE_CST_RTL. */ DEFTREECODE (COMPLEX_CST, "complex_cst", 'c', 3) +/* Contents are in TREE_VECTOR_CST_ELTS field. */ +DEFTREECODE (VECTOR_CST, "vector_cst", 'c', 3) + /* Contents are TREE_STRING_LENGTH and TREE_STRING_POINTER fields. Also there is TREE_CST_RTL. */ DEFTREECODE (STRING_CST, "string_cst", 'c', 3) |