factor/basis/compiler/cfg/intrinsics/float/float.factor

11 lines
381 B
Factor
Raw Normal View History

2010-04-22 04:21:23 -04:00
! Copyright (C) 2008, 2010 Slava Pestov.
! See http://factorcode.org/license.txt for BSD license.
2014-12-13 19:10:21 -05:00
USING: compiler.cfg.hats compiler.cfg.stacks fry ;
IN: compiler.cfg.intrinsics.float
: emit-float-ordered-comparison ( cc -- )
2010-04-22 04:21:23 -04:00
'[ _ ^^compare-float-ordered ] binary-op ; inline
: emit-float-unordered-comparison ( cc -- )
2010-04-22 04:21:23 -04:00
'[ _ ^^compare-float-unordered ] binary-op ; inline