2010-04-22 04:21:23 -04:00
|
|
|
! Copyright (C) 2008, 2010 Slava Pestov.
|
2008-10-20 21:40:15 -04:00
|
|
|
! 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 ;
|
2008-10-20 21:40:15 -04:00
|
|
|
IN: compiler.cfg.intrinsics.float
|
|
|
|
|
2009-09-12 23:20:13 -04:00
|
|
|
: emit-float-ordered-comparison ( cc -- )
|
2010-04-22 04:21:23 -04:00
|
|
|
'[ _ ^^compare-float-ordered ] binary-op ; inline
|
2009-09-12 23:20:13 -04:00
|
|
|
|
|
|
|
: emit-float-unordered-comparison ( cc -- )
|
2010-04-22 04:21:23 -04:00
|
|
|
'[ _ ^^compare-float-unordered ] binary-op ; inline
|