diff --git a/src/jnienv.cpp b/src/jnienv.cpp index 391938180a..533039b066 100644 --- a/src/jnienv.cpp +++ b/src/jnienv.cpp @@ -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 (h->allocate(sizeof(const char*) * propertyCount));