diff options
Diffstat (limited to 'gcc/tree.h')
-rw-r--r-- | gcc/tree.h | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -1455,7 +1455,7 @@ extern void omp_clause_range_check_failed (const_tree, const char *, int, && TREE_INT_CST_LOW (A) < TREE_INT_CST_LOW (B))) struct GTY(()) tree_int_cst { - struct tree_common common; + struct tree_typed typed; double_int int_cst; }; @@ -1468,7 +1468,7 @@ struct real_value; #define TREE_REAL_CST(NODE) (*TREE_REAL_CST_PTR (NODE)) struct GTY(()) tree_real_cst { - struct tree_common common; + struct tree_typed typed; struct real_value * real_cst_ptr; }; @@ -1480,7 +1480,7 @@ struct fixed_value; #define TREE_FIXED_CST(NODE) (*TREE_FIXED_CST_PTR (NODE)) struct GTY(()) tree_fixed_cst { - struct tree_common common; + struct tree_typed typed; struct fixed_value * fixed_cst_ptr; }; @@ -1490,7 +1490,7 @@ struct GTY(()) tree_fixed_cst { ((const char *)(STRING_CST_CHECK (NODE)->string.str)) struct GTY(()) tree_string { - struct tree_common common; + struct tree_typed typed; int length; char str[1]; }; @@ -1500,7 +1500,7 @@ struct GTY(()) tree_string { #define TREE_IMAGPART(NODE) (COMPLEX_CST_CHECK (NODE)->complex.imag) struct GTY(()) tree_complex { - struct tree_common common; + struct tree_typed typed; tree real; tree imag; }; @@ -1509,7 +1509,7 @@ struct GTY(()) tree_complex { #define TREE_VECTOR_CST_ELTS(NODE) (VECTOR_CST_CHECK (NODE)->vector.elements) struct GTY(()) tree_vector { - struct tree_common common; + struct tree_typed typed; tree elements; }; |