diff options
author | Andy Wingo <wingo@pobox.com> | 2017-10-29 21:02:56 +0100 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2017-10-29 21:02:56 +0100 |
commit | d1c69b5c9546b04fc5040f3deb2ee0fce0868083 (patch) | |
tree | fcb9ea0ebce443cf107820cd60352a584a610430 /module/language/cps/compile-bytecode.scm | |
parent | 6bb0a96fa1672855572c5e7166631fb14404d7e0 (diff) | |
download | guile-d1c69b5c9546b04fc5040f3deb2ee0fce0868083.tar.gz |
Remove compiler support for u64-scm comparisons
* module/language/cps/compile-bytecode.scm (compile-function):
* module/language/cps/effects-analysis.scm:
* module/language/cps/primitives.scm (*comparisons*):
* module/language/cps/type-fold.scm:
* module/language/cps/types.scm: Remove compiler support for u64-scm
comparisons, as this is now inlined.
Diffstat (limited to 'module/language/cps/compile-bytecode.scm')
-rw-r--r-- | module/language/cps/compile-bytecode.scm | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/module/language/cps/compile-bytecode.scm b/module/language/cps/compile-bytecode.scm index ea46f68e4..f580551a5 100644 --- a/module/language/cps/compile-bytecode.scm +++ b/module/language/cps/compile-bytecode.scm @@ -471,11 +471,6 @@ (($ $primcall 'f64-= (a b)) (binary-test emit-f64=? a b)) (($ $primcall 'f64->= (a b)) (binary* emit-f64<? emit-jge emit-jnge a b)) (($ $primcall 'f64-> (a b)) (binary* emit-f64<? emit-jl emit-jnl b a)) - (($ $primcall 'u64-<-scm (a b)) (binary emit-br-if-u64-<-scm a b)) - (($ $primcall 'u64-<=-scm (a b)) (binary emit-br-if-u64-<=-scm a b)) - (($ $primcall 'u64-=-scm (a b)) (binary emit-br-if-u64-=-scm a b)) - (($ $primcall 'u64->=-scm (a b)) (binary emit-br-if-u64->=-scm a b)) - (($ $primcall 'u64->-scm (a b)) (binary emit-br-if-u64->-scm a b)) (($ $primcall 'logtest (a b)) (binary emit-br-if-logtest a b)))) (define (compile-trunc label k exp nreq rest-var) |