Commit 09af0a14 authored by Guido van Rossum's avatar Guido van Rossum

Include/node.h: make some fields short to save space during

	parsing
parent 9c68967d
...@@ -31,10 +31,10 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ...@@ -31,10 +31,10 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
/* Parse tree node interface */ /* Parse tree node interface */
typedef struct _node { typedef struct _node {
int n_type; short n_type;
char *n_str; char *n_str;
int n_lineno; short n_lineno;
int n_nchildren; short n_nchildren;
struct _node *n_child; struct _node *n_child;
} node; } node;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment