Changes in src/SynTree/Constant.cc [62423350:2c37f34]
- File:
-
- 1 edited
-
src/SynTree/Constant.cc (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/SynTree/Constant.cc
r62423350 r2c37f34 5 5 // file "LICENCE" distributed with Cforall. 6 6 // 7 // Constant.cc -- 7 // Constant.cc -- 8 8 // 9 9 // Author : Richard C. Bilson … … 46 46 } 47 47 48 unsigned long long Constant::get_ival() const {49 assertf( safe_dynamic_cast<BasicType*>(type)->isInteger(), "Attempt to retrieve ival from non-integer constant." );50 return val.ival;51 }52 53 double Constant::get_dval() const {54 assertf( ! safe_dynamic_cast<BasicType*>(type)->isInteger(), "Attempt to retrieve dval from integer constant." );55 return val.dval;56 }57 58 48 void Constant::print( std::ostream &os ) const { 59 49 os << "(" << rep << " " << val.ival;
Note:
See TracChangeset
for help on using the changeset viewer.