aboutsummaryrefslogtreecommitdiff
path: root/src/interp/i-resolv.boot
diff options
context:
space:
mode:
authordos-reis <gdr@axiomatics.org>2010-06-04 20:41:19 +0000
committerdos-reis <gdr@axiomatics.org>2010-06-04 20:41:19 +0000
commit61fb7fee9ac84e254ca4e07428242fdc37fd4c06 (patch)
treec59b03184b04f4892cf140e4c33535c30c5a6090 /src/interp/i-resolv.boot
parentbd67b8d8c796161376a6268c54f4d10fb0412e07 (diff)
downloadopen-axiom-61fb7fee9ac84e254ca4e07428242fdc37fd4c06.tar.gz
* interp/buildom.boot (UnionEqual): Don't COERCE to FUNCTION. Use
eval. Use middle end opcodes instead of EQCAR. (coerceUn2E): Likewise.
Diffstat (limited to 'src/interp/i-resolv.boot')
-rw-r--r--src/interp/i-resolv.boot2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/interp/i-resolv.boot b/src/interp/i-resolv.boot
index afc8f07d..efc961e9 100644
--- a/src/interp/i-resolv.boot
+++ b/src/interp/i-resolv.boot
@@ -794,7 +794,7 @@ bubbleConstructor(TL) ==
compareTT(t1,t2) ==
-- 'T if type t1 is more nested than t2
-- otherwise 'T if t1 is lexicographically greater than t2
- EQCAR(t1,$QuotientField) or
+ t1 is [=$QuotientField,:.] or
MEMQ(opOf t2,[$QuotientField, 'SimpleAlgebraicExtension]) => NIL
CGREATERP(PRIN2CVEC opOf t1,PRIN2CVEC opOf t2)