diff options
author | Aaron Kennedy <aaron.kennedy@nokia.com> | 2009-05-15 13:16:24 (GMT) |
---|---|---|
committer | Aaron Kennedy <aaron.kennedy@nokia.com> | 2009-05-15 13:16:24 (GMT) |
commit | 6648bab32355a1f64b21e6f5394825a9fbef21ea (patch) | |
tree | 1fc8d4e2f8a02d3ea4dfa31e9538b1ec0581e84c /src/declarative/qml/qmlinstruction.cpp | |
parent | 5be67ef5ad9b2f6020ffe47eecc9fd3338957bb7 (diff) | |
download | Qt-6648bab32355a1f64b21e6f5394825a9fbef21ea.zip Qt-6648bab32355a1f64b21e6f5394825a9fbef21ea.tar.gz Qt-6648bab32355a1f64b21e6f5394825a9fbef21ea.tar.bz2 |
Remove AssignConstant VME instruction
Diffstat (limited to 'src/declarative/qml/qmlinstruction.cpp')
-rw-r--r-- | src/declarative/qml/qmlinstruction.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/declarative/qml/qmlinstruction.cpp b/src/declarative/qml/qmlinstruction.cpp index 6b49359..ef333b1 100644 --- a/src/declarative/qml/qmlinstruction.cpp +++ b/src/declarative/qml/qmlinstruction.cpp @@ -124,9 +124,6 @@ void QmlCompiledComponent::dump(QmlInstruction *instr, int idx) case QmlInstruction::StoreSignal: qWarning() << idx << "\t" << line << "\t" << "STORE_SIGNAL\t\t" << instr->storeSignal.signalIndex << "\t" << instr->storeSignal.value << "\t\t" << primitives.at(instr->storeSignal.value); break; - case QmlInstruction::AssignConstant: - qWarning() << idx << "\t" << line << "\t" << "ASSIGN_CONSTANT\t" << instr->assignConstant.property << "\t" << instr->assignConstant.constant << "\t\t" << datas.at(instr->assignConstant.property) << primitives.at(instr->assignConstant.constant); - break; case QmlInstruction::AssignSignalObject: qWarning() << idx << "\t" << line << "\t" << "ASSIGN_SIGNAL_OBJECT\t" << instr->assignSignalObject.signal << "\t\t\t" << datas.at(instr->assignSignalObject.signal); break; |