repo.or.cz
/
sbcl.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
A test no longer fails.
[sbcl.git]
/
tests
/
block-compile-test-3.lisp
blob
0285e575a990820009c814a2f0e32baffe4559c1
1
(
declaim
(
inline
inl
))
2
(
defun
inl
(
x
) (
1-
x
))
3
(
defun
a
(
x
)
4
(
declare
(
type
(
unsigned-byte
64
)
x
))
5
(
logcount
(
inl
x
)))
6
7
(
defun
foo2
(
x
) (
1
+ (
bar2
x
)))
8
(
declaim
(
inline
bar2
))
9
(
defun
bar2
(
x
) (
1
+
x
))