Changeset 176 for trunk/thune/eval.c

Show
Ignore:
Timestamp:
06/08/06 22:15:34 (3 years ago)
Author:
krobillard
Message:

Thune - Added scripts/opcode_ratio.t

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/thune/eval.c

    r175 r176  
    16991699            if( ur_is(val, UT_CHAR) ) 
    17001700                ur_type(val) = UT_INT; 
     1701            break; 
     1702 
     1703        case UT_DECIMAL: 
     1704            if( ur_is(val, UT_INT) || ur_is(val, UT_CHAR) ) 
     1705            { 
     1706                ur_setType(val, UT_DECIMAL); 
     1707                ur_decimal(val) = ur_int(val); 
     1708            } 
    17011709            break; 
    17021710