Changeset 292 for trunk/thune/eval.c
- Timestamp:
- 10/04/06 20:41:29 (2 years ago)
- Files:
-
- 1 modified
-
trunk/thune/eval.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/thune/eval.c
r282 r292 2002 2002 case UT_INT: 2003 2003 if( ur_is(val, UT_CHAR) || ur_is(val, UT_LOGIC) ) 2004 { 2004 2005 ur_type(val) = UT_INT; 2006 } 2007 else if( ur_is(val, UT_DECIMAL) ) 2008 { 2009 ur_initType(val, UT_INT); 2010 ur_int(val) = (int32_t) ur_decimal(val); 2011 } 2005 2012 break; 2006 2013
