Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions runtime/llvm-runtime.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ PERSONALITY is bound to the context's personality object."
(define-compiler-macro sign-extend (&whole whole value width)
(declare (ignorable whole))
(cond
#+sbcl
#+(and sbcl (not ppc64))
((member width '(8 16 32))
`(sb-vm::sign-extend ,value ,width))
((integerp width)
Expand Down Expand Up @@ -354,7 +354,7 @@ PERSONALITY is bound to the context's personality object."
(t
`(sign-extend ,value ,input-size)))
#+sbcl
`(sign-extend ,value ,size))
`(sign-extend ,value ,input-size))

(define-integer-conversion-op zext (value size)
value)
Expand Down