projects
/
xonotic
/
gmqcc.git
/ commitdiff
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
216330a
)
Remove the attempt at ast_intrinsic node
author
Dale Weiler <killfieldengine@gmail.com>
Wed, 14 Aug 2013 03:05:14 +0000
(
03:05
+0000)
committer
Dale Weiler <killfieldengine@gmail.com>
Wed, 14 Aug 2013 03:05:14 +0000
(
03:05
+0000)
ast.h
patch
|
blob
|
history
diff --git
a/ast.h
b/ast.h
index d3dfdb21273ab1bc56e18ac491a6dd9428969db5..bb7a3170a7c108a51d6792cb5588fee64e1a9ac0 100644
(file)
--- a/
ast.h
+++ b/
ast.h
@@
-52,7
+52,6
@@
typedef struct ast_switch_s ast_switch;
typedef struct ast_label_s ast_label;
typedef struct ast_goto_s ast_goto;
typedef struct ast_argpipe_s ast_argpipe;
-typedef struct ast_intrinsic_s ast_intrinsic;
enum {
TYPE_ast_node, /* 0 */
@@
-76,8
+75,7
@@
enum {
TYPE_ast_switch, /* 18 */
TYPE_ast_label, /* 19 */
TYPE_ast_goto, /* 20 */
- TYPE_ast_argpipe, /* 21 */
- TYPE_ast_intrinsic /* 22 */
+ TYPE_ast_argpipe /* 21 */
};
#define ast_istype(x, t) ( ((ast_node*)x)->nodetype == (TYPE_##t) )