Skip to content
Snippets Groups Projects
Commit a883af6d authored by rtoy's avatar rtoy
Browse files

Need to load x87-c-call if we're not running an sse2 build.

parent e8385fd7
No related branches found
No related tags found
No related merge requests found
...@@ -84,8 +84,10 @@ ...@@ -84,8 +84,10 @@
(load "vm:subprim") (load "vm:subprim")
(load "vm:debug") (load "vm:debug")
(load "vm:c-call") (load "vm:c-call")
(when (target-featurep :sse2) (if (target-featurep :sse2)
(load "vm:sse2-c-call")) (load "vm:sse2-c-call")
(load "vm:x87-c-call"))
(load "vm:print") (load "vm:print")
(load "vm:alloc") (load "vm:alloc")
(load "vm:call") (load "vm:call")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment