comparison tcc.h @ 589:49d3fc246344

Small fix for building on a 64 bit host.
author Rob Landley <rob@landley.net>
date Sun, 06 Apr 2008 16:10:01 -0500
parents 8e32c8615b39
children
comparison
equal deleted inserted replaced
588:99c839b47e5d 589:49d3fc246344
162 } SValue; 162 } SValue;
163 163
164 /* symbol management */ 164 /* symbol management */
165 typedef struct Sym { 165 typedef struct Sym {
166 int token; /* symbol token */ 166 int token; /* symbol token */
167 int r; /* associated register */ 167 long r; /* associated register */
168 long c; /* associated number */ 168 long c; /* associated number */
169 CType type; /* associated type */ 169 CType type; /* associated type */
170 struct Sym *next; /* next related symbol */ 170 struct Sym *next; /* next related symbol */
171 struct Sym *prev; /* prev symbol in stack */ 171 struct Sym *prev; /* prev symbol in stack */
172 struct Sym *prev_tok; /* previous symbol for this token */ 172 struct Sym *prev_tok; /* previous symbol for this token */