Fix a typo in a comment.

This commit is contained in:
Bill Currie 2018-08-23 20:04:51 +09:00
parent f250065003
commit 8b8b42bde2
1 changed files with 1 additions and 1 deletions

View File

@ -60,7 +60,7 @@ typedef struct dagnode_s {
struct set_s *parents; ///< empty if root node
int cost; ///< cost of this node in temp vars
unsigned killed:1; ///< node is unavailable for cse
st_type_t type; ///< type of node (st_node = leaf)
st_type_t type; ///< type of node (st_none = leaf)
daglabel_t *label; ///< ident/const if leaf node, or operator
etype_t tl;
struct operand_s *value; ///< operand holding the value of this node