* src/vm/jit/jit.h (s3_operant_t): Typo fixed to s3_operand_t. Thanks, twisti.
authoredwin <none@none>
Wed, 31 May 2006 19:25:46 +0000 (19:25 +0000)
committeredwin <none@none>
Wed, 31 May 2006 19:25:46 +0000 (19:25 +0000)
src/vm/jit/jit.h

index 8c1fb96f8c9c9c28bb65e66f601598c54b14af39..4cb5a89fd980fe833f3c465ae3b51099f24bb7f0 100644 (file)
@@ -30,7 +30,7 @@
    Changes: Christian Thalinger
                        Edwin Steiner
 
-   $Id: jit.h 4993 2006-05-30 23:38:32Z edwin $
+   $Id: jit.h 4997 2006-05-31 19:25:46Z edwin $
 
 */
 
@@ -194,7 +194,7 @@ typedef union {
     s4                         tablehigh;
     basicblock                *lookupdefault;
     struct builtintable_entry *bte;
-} s3_operant_t;
+} s3_operand_t;
 
 /*** val operand ***/
 
@@ -267,7 +267,7 @@ struct new_instruction {
        union {
                struct {
                        s2_operand_t    s2;             /* pointer-size */
-                       s3_operant_t    s3;             /* pointer-size */
+                       s3_operand_t    s3;             /* pointer-size */
                } s23;                      /*     XOR      */
                val_operand_t           val;    /*  long-size   */
        } sx;