projects
/
sbcl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
040344c
)
Simplify ppc's MOVE-TO-WORD/INTEGER
author
David Lichteblau
<david@lichteblau.com>
Thu, 7 Jun 2012 21:49:34 +0000
(23:49 +0200)
committer
David Lichteblau
<david@lichteblau.com>
Thu, 7 Jun 2012 23:16:57 +0000
(
01:16
+0200)
src/compiler/ppc/move.lisp
patch
|
blob
|
history
diff --git
a/src/compiler/ppc/move.lisp
b/src/compiler/ppc/move.lisp
index
63011ee
..
e0c83fe
100644
(file)
--- a/
src/compiler/ppc/move.lisp
+++ b/
src/compiler/ppc/move.lisp
@@
-168,11
+168,7
@@
(:generator 4
(let ((done (gen-label)))
(inst andi. temp x fixnum-tag-mask)
- (sc-case y
- (signed-reg
- (inst srawi y x n-fixnum-tag-bits))
- (unsigned-reg
- (inst srwi y x n-fixnum-tag-bits)))
+ (inst srawi y x n-fixnum-tag-bits)
(inst beq done)
(loadw y x bignum-digits-offset other-pointer-lowtag)