Skip to content

Commit

Permalink
Silence compiler noise.
Browse files Browse the repository at this point in the history
  • Loading branch information
snuglas committed Jul 13, 2016
1 parent 5d2d20f commit fd320bd
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/code/target-type.lisp
Expand Up @@ -143,7 +143,11 @@
(typecase x
(standard-char (specifier-type 'standard-char))
(base-char (specifier-type 'base-char))
(extended-char (specifier-type 'extended-char))))
;; If the last case were expressed as EXTENDED-CHAR,
;; we wrongly get "this is not a (VALUES CTYPE): NIL"
;; because the compiler is too naive to see that
;; the last 2 cases partition CHARACTER.
(t (specifier-type 'extended-char))))
#!+sb-simd-pack
(simd-pack
(let ((tag (%simd-pack-tag x)))
Expand Down

0 comments on commit fd320bd

Please sign in to comment.