aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/qml/compiler/qv4isel_moth.cpp6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/qml/compiler/qv4isel_moth.cpp b/src/qml/compiler/qv4isel_moth.cpp
index fb805dce02..82f5225f28 100644
--- a/src/qml/compiler/qv4isel_moth.cpp
+++ b/src/qml/compiler/qv4isel_moth.cpp
@@ -1457,13 +1457,7 @@ bool CompilationUnit::memoryMapCode(QString *errorString)
for (uint i = 0; i < data->functionTableSize; ++i) {
const CompiledData::Function *compiledFunction = data->functionAt(i);
const char *codePtr = const_cast<const char *>(reinterpret_cast<const char *>(basePtr + compiledFunction->codeOffset));
-#ifdef MOTH_THREADED_INTERPRETER
- // for the threaded interpreter we need to make a copy of the data because it needs to be
- // modified for the instruction handler addresses.
- QByteArray code(codePtr, compiledFunction->codeSize);
-#else
QByteArray code = QByteArray::fromRawData(codePtr, compiledFunction->codeSize);
-#endif
codeRefs[i] = code;
}