diff options
Diffstat (limited to 'gcc/tree.def')
-rw-r--r-- | gcc/tree.def | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gcc/tree.def b/gcc/tree.def index 39ea31c033b..9cfe139ac57 100644 --- a/gcc/tree.def +++ b/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) |