diff options
Diffstat (limited to 'model.cpp')
-rw-r--r-- | model.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -62,6 +62,10 @@ bool EvalObj::is_prom_obj() { return otype & CLS_PROM_OBJ; } +bool EvalObj::is_vect_obj() { + return otype & CLS_VECT_OBJ; +} + int EvalObj::get_otype() { return otype; } @@ -125,3 +129,6 @@ string EvalObj::ext_repr() { res = "(" + res + ")"; return res; } + +RetAddr::RetAddr(Pair *_addr, Pair *_state) : + FrameObj(CLS_RET_ADDR), addr(_addr), state(_state) {} |