! Copyright (C) 2005 Slava Pestov. ! See http://factor.sf.net/license.txt for BSD license. IN: compiler USING: assembler errors kernel math math-internals memory namespaces words ; : simple-overflow ( dest -- ) #! If the previous arithmetic operation overflowed, then we #! turn the result into a bignum and leave it in EAX. This #! does not trigger a GC if memory is full -- is that bad?