Home
last modified time | relevance | path

Searched refs:case_node (Results 1 – 4 of 4) sorted by relevance

/openbsd-src/gnu/gcc/gcc/
H A Dstmt.c83 struct case_node GTY(())
85 struct case_node *left; /* Left son in binary tree */
86 struct case_node *right; /* Right son in binary tree; also node chain */
87 struct case_node *parent; /* Parent of node in binary tree */
93 typedef struct case_node case_node; typedef
94 typedef struct case_node *case_node_ptr;
124 static struct case_node *add_case_node (struct case_node *, tree,
2078 static struct case_node *
2079 add_case_node (struct case_node *head, tree type, tree low, tree high, in add_case_node()
2083 struct case_node *r; in add_case_node()
[all …]
/openbsd-src/gnu/usr.bin/gcc/gcc/
H A Dstmt.c87 struct case_node GTY(())
89 struct case_node *left; /* Left son in binary tree */
90 struct case_node *right; /* Right son in binary tree; also node chain */
91 struct case_node *parent; /* Parent of node in binary tree */
98 typedef struct case_node case_node; typedef
99 typedef struct case_node *case_node_ptr;
238 struct case_node *case_list;
430 static struct case_node *case_tree2list PARAMS ((case_node *, case_node *));
4692 struct case_node *p, **q, *r;
4738 r = (struct case_node *) ggc_alloc (sizeof (struct case_node));
[all …]
H A DFSFChangeLog.10294 * stmt.c (struct case_node): New member balance.
H A DChangeLog.73411 * stmt.c (add_case_node): Use GGC to allocate struct case_node.