projects
/
sbcl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
729ce57
)
Fix foreign-symbol-address transform on +sb-dynamic-core.
author
Stas Boukarev
<stassats@gmail.com>
Tue, 21 May 2013 11:05:19 +0000
(15:05 +0400)
committer
Stas Boukarev
<stassats@gmail.com>
Tue, 21 May 2013 11:05:19 +0000
(15:05 +0400)
Badly placed ` was resulting in a wrong result.
src/compiler/saptran.lisp
patch
|
blob
|
history
diff --git
a/src/compiler/saptran.lisp
b/src/compiler/saptran.lisp
index
8161ce7
..
80b5e58
100644
(file)
--- a/
src/compiler/saptran.lisp
+++ b/
src/compiler/saptran.lisp
@@
-19,8
+19,8
@@
(if (and (constant-lvar-p symbol)
(constant-lvar-p datap)
#!+sb-dynamic-core (not (lvar-value datap)))
- (values `(sap-int (foreign-symbol-sap symbol datap))
- (or #!+sb-dynamic-core t))
+ `(values (sap-int (foreign-symbol-sap symbol datap))
+ (or #!+sb-dynamic-core t))
(give-up-ir1-transform)))
(deftransform foreign-symbol-sap ((symbol &optional datap)