summaryrefslogtreecommitdiffstats
path: root/src/declarative/qml/qmlinstruction.cpp
diff options
context:
space:
mode:
authorAaron Kennedy <aaron.kennedy@nokia.com>2009-05-15 13:16:24 (GMT)
committerAaron Kennedy <aaron.kennedy@nokia.com>2009-05-15 13:16:24 (GMT)
commit6648bab32355a1f64b21e6f5394825a9fbef21ea (patch)
tree1fc8d4e2f8a02d3ea4dfa31e9538b1ec0581e84c /src/declarative/qml/qmlinstruction.cpp
parent5be67ef5ad9b2f6020ffe47eecc9fd3338957bb7 (diff)
downloadQt-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.cpp3
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;