Convert ast_node use of simple_node to exec_list and exec_node

This commit is contained in:
Ian Romanick
2010-05-10 11:17:53 -07:00
parent 752c905b8c
commit 304ea90233
6 changed files with 111 additions and 158 deletions

View File

@@ -26,7 +26,6 @@
#define GLSL_PARSER_EXTRAS_H
#include <cstdlib>
#include "main/simple_list.h"
#include "glsl_symbol_table.h"
enum _mesa_glsl_parser_targets {
@@ -38,7 +37,7 @@ enum _mesa_glsl_parser_targets {
struct _mesa_glsl_parse_state {
void *scanner;
struct simple_node translation_unit;
exec_list translation_unit;
glsl_symbol_table *symbols;
unsigned language_version;