Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
cmucl
cmucl
Commits
a883af6d
Commit
a883af6d
authored
Mar 27, 2009
by
rtoy
Browse files
Need to load x87-c-call if we're not running an sse2 build.
parent
e8385fd7
Changes
1
Hide whitespace changes
Inline
Side-by-side
tools/cross-scripts/cross-x86-x86.lisp
View file @
a883af6d
...
...
@@ -84,8 +84,10 @@
(
load
"vm:subprim"
)
(
load
"vm:debug"
)
(
load
"vm:c-call"
)
(
when
(
target-featurep
:sse2
)
(
load
"vm:sse2-c-call"
))
(
if
(
target-featurep
:sse2
)
(
load
"vm:sse2-c-call"
)
(
load
"vm:x87-c-call"
))
(
load
"vm:print"
)
(
load
"vm:alloc"
)
(
load
"vm:call"
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment