From 5b8a7ca566a4dd175cdc096bcbb84254fe31d451 Mon Sep 17 00:00:00 2001 From: Joel Dice Date: Wed, 4 Nov 2009 15:16:06 +0000 Subject: [PATCH] temporarily disable use of SSE on 32-bit systems until a bug involving memory<->SSE-register moves is fixed --- src/jnienv.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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));