From 8b8b42bde274a91c984d8586d72645f434bf01fe Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Thu, 23 Aug 2018 20:04:51 +0900 Subject: [PATCH] Fix a typo in a comment. --- tools/qfcc/include/dags.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/qfcc/include/dags.h b/tools/qfcc/include/dags.h index 21ac8c943..7b624ea2e 100644 --- a/tools/qfcc/include/dags.h +++ b/tools/qfcc/include/dags.h @@ -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