Skip to content
Snippets Groups Projects
Commit 87aed560 authored by Raymond Toy's avatar Raymond Toy
Browse files

Remove more sse2 stuff.

 * Exit if the chip doesn't support sse2.
 * Treat any mode setting as being the same as sse2 and return the
   sse2 core name.
parent 28455f51
No related branches found
No related tags found
No related merge requests found
...@@ -108,17 +108,16 @@ arch_init(fpu_mode_t mode) ...@@ -108,17 +108,16 @@ arch_init(fpu_mode_t mode)
have_sse2 = arch_support_sse2() && os_support_sse2(); have_sse2 = arch_support_sse2() && os_support_sse2();
if (!have_sse2) {
fprintf(stderr, "CMUCL requires a SSE2 support; exiting\n");
abort();
}
switch (mode) { switch (mode) {
case AUTO: case AUTO:
if (have_sse2) {
return "lisp-sse2.core";
} else {
return "lisp-x87.core";
}
break;
case X87: case X87:
return "lisp-x87.core"; fprintf(stderr, "fpu mode AUTO or X87 is not longer supported.\n");
break; /* Fall through and return the sse2 core */
case SSE2: case SSE2:
return "lisp-sse2.core"; return "lisp-sse2.core";
break; break;
......
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