temporarily disable use of SSE on 32-bit systems until a bug involving memory<->SSE-register moves is fixed

This commit is contained in:
Joel Dice 2009-11-04 15:16:06 +00:00
parent fb5796b740
commit 5b8a7ca566

View File

@ -2169,7 +2169,10 @@ JNI_CreateJavaVM(Machine** m, Thread** t, void* args)
System* s = makeSystem(crashDumpDirectory);
Heap* h = makeHeap(s, heapLimit);
Finder* f = makeFinder(s, RUNTIME_ARRAY_BODY(classpathBuffer), bootLibrary);
Processor* p = makeProcessor(s, h, true);
Processor* p = makeProcessor(s, h, false); // change back to true
// once use of SSE is
// fixed on 32-bit
// systems
const char** properties = static_cast<const char**>
(h->allocate(sizeof(const char*) * propertyCount));