Typo
authortwisti <none@none>
Thu, 23 Jan 2003 22:16:55 +0000 (22:16 +0000)
committertwisti <none@none>
Thu, 23 Jan 2003 22:16:55 +0000 (22:16 +0000)
jit/jitdef.h

index 5691143c611c7c3a3f56b1991ca7e1ec867c9da8..9e192a082bb27ab4050ee7a3b00187fa711c42f0 100644 (file)
@@ -48,7 +48,7 @@ typedef varinfo *varinfoptr;
 #define SAVEDVAR   1            /* variable has to survive method invocations */
 #define INMEMORY   2            /* variable stored in memory                  */
 
-/*                    variable types                                          */
+/*                    variable kinds                                          */
 
 #define UNDEFVAR   0            /* stack slot will become temp during regalloc*/
 #define TEMPVAR    1            /* stack slot is temp register                */
@@ -58,7 +58,7 @@ typedef varinfo *varinfoptr;
 
 struct stackelement {
        stackptr prev;              /* pointer to next element towards bottom     */
-       int type;                   /* data type of stack element                 */
+       int type;                   /* slot type of stack element                 */
        int flags;                  /* flags (SAVED, INMEMORY)                    */
        int varkind;                /* kind of variable or register               */
        int varnum;                 /* number of variable                         */