factor/vm/words.hpp

10 lines
109 B
C++
Raw Normal View History

2009-05-04 02:46:13 -04:00
namespace factor
{
2009-05-04 05:50:24 -04:00
inline bool word_optimized_p(word *word)
2009-05-02 05:04:19 -04:00
{
return word->code->type() == WORD_TYPE;
2009-05-02 05:04:19 -04:00
}
2009-05-04 02:46:13 -04:00
}